Merge pull request #122 from srid/patch-1

remove ! from command line
This commit is contained in:
Guillaume J. Charmes 2013-03-20 23:26:50 -07:00
commit 3e9877a30f

View file

@ -148,7 +148,7 @@ Starting a long-running worker process
(docker -d || echo "Docker daemon already running") &
# Start a very useful long-running process
JOB=$(docker run base /bin/sh -c "while true; do echo Hello world!; sleep 1; done")
JOB=$(docker run base /bin/sh -c "while true; do echo Hello world; sleep 1; done")
# Collect the output of the job so far
docker logs $JOB