Browse Source

Merge pull request #25946 from lixiaobing10051267/masterDockerImages

Incorrect response field name for command "docker images"
(cherry picked from commit 0b2ff0ccdef3327e52699941b2ab888f7fbecb1e)

Signed-off-by: Charles Smith <charles.smith@docker.com>
Tõnis Tiigi 9 years ago
parent
commit
9234cc38e2
3 changed files with 5 additions and 5 deletions
  1. 1 1
      docs/getstarted/step_four.md
  2. 3 3
      docs/getstarted/step_six.md
  3. 1 1
      docs/getstarted/step_three.md

+ 1 - 1
docs/getstarted/step_four.md

@@ -185,7 +185,7 @@ In this step, you verify the new images is on your computer and then you run you
     This command, you might remember, lists the images you have locally.
 
         $ docker images
-        REPOSITORY           TAG          IMAGE ID          CREATED             VIRTUAL SIZE
+        REPOSITORY           TAG          IMAGE ID          CREATED             SIZE
         docker-whale         latest       7d9495d03763      4 minutes ago       273.7 MB
         docker/whalesay      latest       fb434121fc77      4 hours ago         247 MB
         hello-world          latest       91c95931e552      5 weeks ago         910 B

+ 3 - 3
docs/getstarted/step_six.md

@@ -31,7 +31,7 @@ If you don't already have a terminal open, open one now:
 2. At the prompt, type `docker images` to list the images you currently have:
 
         $ docker images
-        REPOSITORY           TAG          IMAGE ID            CREATED             VIRTUAL SIZE
+        REPOSITORY           TAG          IMAGE ID            CREATED             SIZE
         docker-whale         latest       7d9495d03763        38 minutes ago      273.7 MB
         <none>               <none>       5dac217f722c        45 minutes ago      273.7 MB
         docker/whalesay      latest       fb434121fc77        4 hours ago         247 MB
@@ -61,7 +61,7 @@ If you don't already have a terminal open, open one now:
 7. Type the `docker images` command again to see your newly tagged image.
 
         $ docker images
-        REPOSITORY                  TAG       IMAGE ID        CREATED          VIRTUAL SIZE
+        REPOSITORY                  TAG       IMAGE ID        CREATED          SIZE
         maryatdocker/docker-whale   latest    7d9495d03763    5 minutes ago    273.7 MB
         docker-whale                latest    7d9495d03763    2 hours ago      273.7 MB
         <none>                      <none>    5dac217f722c    5 hours ago      273.7 MB
@@ -116,7 +116,7 @@ from the hub &mdash; why would it? The two images are identical.
 2. At the prompt, type `docker images` to list the images you currently have on your local machine.
 
 		$ docker images
-		REPOSITORY                  TAG       IMAGE ID        CREATED          VIRTUAL SIZE
+		REPOSITORY                  TAG       IMAGE ID        CREATED          SIZE
 		maryatdocker/docker-whale   latest    7d9495d03763    5 minutes ago    273.7 MB
 		docker-whale                latest    7d9495d03763    2 hours ago      273.7 MB
 		<none>                      <none>    5dac217f722c    5 hours ago      273.7 MB

+ 1 - 1
docs/getstarted/step_three.md

@@ -99,7 +99,7 @@ Make sure Docker is running. On Docker for Mac and Docker for Windows, this is i
     `docker/whalesay` in the list.
 
         $ docker images
-        REPOSITORY           TAG         IMAGE ID            CREATED            VIRTUAL SIZE
+        REPOSITORY           TAG         IMAGE ID            CREATED            SIZE
         docker/whalesay      latest      fb434121fc77        3 hours ago        247 MB
         hello-world          latest      91c95931e552        5 weeks ago        910 B