Browse Source

Merge pull request #5578 from msulima/patch-1

hello_world.md - $container_id variable case sensitivity
O.S. Tezer 11 years ago
parent
commit
54e20b8f7b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/sources/examples/hello_world.md

+ 1 - 1
docs/sources/examples/hello_world.md

@@ -80,7 +80,7 @@ continue to do this until we stop it.
 
 
 **Steps:**
 **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
 We are going to run a simple hello world daemon in a new container made
 from the `ubuntu` image.
 from the `ubuntu` image.