Slide 5
Slide 5 text
sync or async
docker help run
-a, --attach=[]
Attach to stdin, stdout or stderr.
-d, --detach=false
Detached mode: Run container in the background, print new container id
--rm=false
Automatically remove the container when it exits (incompatible with -d)
● parallel multivariate tests
● loop over synchronous tests
for sut in centos:centos6 ubuntu:trusty; do
docker run -v /tests:/tests $sut /tests/run.sh
done