Browse code

Merge pull request #9330 from TomasTomecek/master

docs: man docker-images: inconsistent naming

Sven Dowideit authored on 2014/12/02 10:42:29
Showing 3 changed files
... ...
@@ -1328,7 +1328,7 @@ func (cli *DockerCli) CmdPull(args ...string) error {
1328 1328
 }
1329 1329
 
1330 1330
 func (cli *DockerCli) CmdImages(args ...string) error {
1331
-	cmd := cli.Subcmd("images", "[NAME]", "List images")
1331
+	cmd := cli.Subcmd("images", "[REPOSITORY]", "List images")
1332 1332
 	quiet := cmd.Bool([]string{"q", "-quiet"}, false, "Only show numeric IDs")
1333 1333
 	all := cmd.Bool([]string{"a", "-all"}, false, "Show all images (by default filter out the intermediate image layers)")
1334 1334
 	noTrunc := cmd.Bool([]string{"#notrunc", "-no-trunc"}, false, "Don't truncate output")
... ...
@@ -10,7 +10,7 @@ docker-images - List images
10 10
 [**-f**|**--filter**[=*[]*]]
11 11
 [**--no-trunc**[=*false*]]
12 12
 [**-q**|**--quiet**[=*false*]]
13
- [NAME]
13
+ [REPOSITORY]
14 14
 
15 15
 # DESCRIPTION
16 16
 This command lists the images stored in the local Docker repository.
... ...
@@ -779,7 +779,7 @@ To see how the `docker:latest` image was built:
779 779
 
780 780
 ## images
781 781
 
782
-    Usage: docker images [OPTIONS] [NAME]
782
+    Usage: docker images [OPTIONS] [REPOSITORY]
783 783
 
784 784
     List images
785 785