Browse Source

Merge pull request #26581 from yongtang/09142016-docs-getstarted-step-four

Fix a couple of issues in Get Started docs
Sebastiaan van Stijn 8 years ago
parent
commit
51a981fd5f
1 changed files with 3 additions and 6 deletions
  1. 3 6
      docs/getstarted/step_four.md

+ 3 - 6
docs/getstarted/step_four.md

@@ -99,7 +99,7 @@ commands to run. Your recipe is going to be very short.
 2. Now, build your new image by typing the `docker build -t docker-whale .` command in your terminal (don't forget the . period).
 2. Now, build your new image by typing the `docker build -t docker-whale .` command in your terminal (don't forget the . period).
 
 
         $ docker build -t docker-whale .
         $ docker build -t docker-whale .
-        Sending build context to Docker daemon 158.8 MB
+        Sending build context to Docker daemon 2.048 kB
         ...snip...
         ...snip...
         Removing intermediate container a8e6faa88df3
         Removing intermediate container a8e6faa88df3
         Successfully built 7d9495d03763
         Successfully built 7d9495d03763
@@ -117,7 +117,7 @@ complex. In this section, you learn what each message means.
 
 
 First Docker checks to make sure it has everything it needs to build.
 First Docker checks to make sure it has everything it needs to build.
 
 
-    Sending build context to Docker daemon 158.8 MB
+    Sending build context to Docker daemon 2.048 kB
 
 
 Then, Docker loads with the `whalesay` image.	It already has this image
 Then, Docker loads with the `whalesay` image.	It already has this image
 locally as you might recall from the last page. So, Docker doesn't need to
 locally as you might recall from the last page. So, Docker doesn't need to
@@ -143,9 +143,6 @@ manager. This takes a lot of lines, no need to list them all again here.
 
 
 Then, Docker installs the new `fortunes` software.
 Then, Docker installs the new `fortunes` software.
 
 
-    Removing intermediate container e2a84b5f390f
-    Step 3 : RUN apt-get install -y fortunes
-     ---> Running in 23aa52c1897c
     Reading package lists...
     Reading package lists...
     Building dependency tree...
     Building dependency tree...
     Reading state information...
     Reading state information...
@@ -167,7 +164,7 @@ Then, Docker installs the new `fortunes` software.
 
 
 Finally, Docker finishes the build and reports its outcome.		
 Finally, Docker finishes the build and reports its outcome.		
 
 
-    Step 4 : CMD /usr/games/fortune -a | cowsay
+    Step 3 : CMD /usr/games/fortune -a | cowsay
      ---> Running in a8e6faa88df3
      ---> Running in a8e6faa88df3
      ---> 7d9495d03763
      ---> 7d9495d03763
     Removing intermediate container a8e6faa88df3
     Removing intermediate container a8e6faa88df3