Browse Source

Merge pull request #122 from srid/patch-1

remove ! from command line
Guillaume J. Charmes 12 năm trước cách đây
mục cha
commit
3e9877a30f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -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