Merge pull request #25946 from lixiaobing10051267/masterDockerImages

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

Signed-off-by: Charles Smith <charles.smith@docker.com>
This commit is contained in:
Tõnis Tiigi 2016-08-23 11:19:52 -07:00 committed by Charles Smith
parent d649ae0370
commit 9234cc38e2
3 changed files with 5 additions and 5 deletions

View file

@ -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. This command, you might remember, lists the images you have locally.
$ docker images $ 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-whale latest 7d9495d03763 4 minutes ago 273.7 MB
docker/whalesay latest fb434121fc77 4 hours ago 247 MB docker/whalesay latest fb434121fc77 4 hours ago 247 MB
hello-world latest 91c95931e552 5 weeks ago 910 B hello-world latest 91c95931e552 5 weeks ago 910 B

View file

@ -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: 2. At the prompt, type `docker images` to list the images you currently have:
$ docker images $ 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 docker-whale latest 7d9495d03763 38 minutes ago 273.7 MB
<none> <none> 5dac217f722c 45 minutes ago 273.7 MB <none> <none> 5dac217f722c 45 minutes ago 273.7 MB
docker/whalesay latest fb434121fc77 4 hours ago 247 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. 7. Type the `docker images` command again to see your newly tagged image.
$ docker images $ 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 maryatdocker/docker-whale latest 7d9495d03763 5 minutes ago 273.7 MB
docker-whale latest 7d9495d03763 2 hours ago 273.7 MB docker-whale latest 7d9495d03763 2 hours ago 273.7 MB
<none> <none> 5dac217f722c 5 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. 2. At the prompt, type `docker images` to list the images you currently have on your local machine.
$ docker images $ 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 maryatdocker/docker-whale latest 7d9495d03763 5 minutes ago 273.7 MB
docker-whale latest 7d9495d03763 2 hours ago 273.7 MB docker-whale latest 7d9495d03763 2 hours ago 273.7 MB
<none> <none> 5dac217f722c 5 hours ago 273.7 MB <none> <none> 5dac217f722c 5 hours ago 273.7 MB

View file

@ -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/whalesay` in the list.
$ docker images $ docker images
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE REPOSITORY TAG IMAGE ID CREATED SIZE
docker/whalesay latest fb434121fc77 3 hours ago 247 MB docker/whalesay latest fb434121fc77 3 hours ago 247 MB
hello-world latest 91c95931e552 5 weeks ago 910 B hello-world latest 91c95931e552 5 weeks ago 910 B