Преглед изворни кода

Merge pull request #101 from silas/examples

Fix docker run typo
Solomon Hykes пре 12 година
родитељ
комит
4015f8dd34
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -144,7 +144,7 @@ Starting a long-running worker process
 	(docker -d || echo "Docker daemon already running") &
 	(docker -d || echo "Docker daemon already running") &
 
 
 	# Start a very useful long-running process
 	# Start a very useful long-running process
-	JOB=$(docker run /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
 	# Collect the output of the job so far
 	docker logs $JOB
 	docker logs $JOB