mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix docker run typo
This commit is contained in:
parent
b400d78b19
commit
16f132b156
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ Starting a long-running worker process
|
|||
(docker -d || echo "Docker daemon already running") &
|
||||
|
||||
# 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
|
||||
docker logs $JOB
|
||||
|
|
Loading…
Reference in a new issue