Skip to content

Commit

Permalink
script to build and run artio build in different containers
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianoviana committed Oct 18, 2024
1 parent 57d4652 commit e31e3b0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions run-build-in-containers.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
docker rm -f artio1
docker rm -f artio2
docker rm -f artio3
docker build -t artio .
docker run -d --cpus 1 --name artio1 artio
docker run -d --cpus 1 --name artio2 artio
docker run -d --cpus 1 --name artio3 artio

echo
echo 'Execute the following to monitor the logs for test failures :'

echo 'docker logs artio1 -f | grep FAILED'
echo 'docker logs artio2 -f | grep FAILED'
echo 'docker logs artio3 -f | grep FAILED'

0 comments on commit e31e3b0

Please sign in to comment.