diff --git a/docs/sources/examples/hello_world.md b/docs/sources/examples/hello_world.md index 48f4a431028af0b01c3888842df33c3c6a0a66b2..177857816c5a37dfc5bc63eb9d2cb0b86fe631ef 100644 --- a/docs/sources/examples/hello_world.md +++ b/docs/sources/examples/hello_world.md @@ -80,7 +80,7 @@ continue to do this until we stop it. **Steps:** - $ CONTAINER_ID=$(sudo docker run -d ubuntu /bin/sh -c "while true; do echo hello world; sleep 1; done") + $ container_id=$(sudo docker run -d ubuntu /bin/sh -c "while true; do echo hello world; sleep 1; done") We are going to run a simple hello world daemon in a new container made from the `ubuntu` image.