Created
January 15, 2015 16:39
-
-
Save vbatts/dc1aa648bde5221ec799 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM busybox | |
RUN dd if=/dev/urandom of=/dev/null bs=1024k count=5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
set -x | |
DOCKER=${DOCKER:-docker} | |
for i in {0..50} | |
do | |
${DOCKER} build --no-cache . & | |
${DOCKER} build --no-cache . | |
wait $(jobs -p) | |
echo $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment