Browse code

Merge pull request #122 from srid/patch-1

remove ! from command line

Guillaume J. Charmes authored on 2013/03/21 15:26:50
Showing 1 changed files
... ...
@@ -148,7 +148,7 @@ Starting a long-running worker process
148 148
 	(docker -d || echo "Docker daemon already running") &
149 149
 
150 150
 	# Start a very useful long-running process
151
-	JOB=$(docker run base /bin/sh -c "while true; do echo Hello world!; sleep 1; done")
151
+	JOB=$(docker run base /bin/sh -c "while true; do echo Hello world; sleep 1; done")
152 152
 
153 153
 	# Collect the output of the job so far
154 154
 	docker logs $JOB