From 3d28fc7d1c92456b226e1169bf3f44dcd9154b71 Mon Sep 17 00:00:00 2001 From: John Willis Date: Mon, 23 Mar 2015 21:00:02 -0400 Subject: [PATCH 1/2] #11465 Add additional doc for locagi registries onn pull command Signed-off-by: John Willis --- docs/sources/reference/commandline/cli.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/sources/reference/commandline/cli.md b/docs/sources/reference/commandline/cli.md index 30a8a6b42..2c00b4f21 100644 --- a/docs/sources/reference/commandline/cli.md +++ b/docs/sources/reference/commandline/cli.md @@ -1569,7 +1569,7 @@ This shows all the containers that have exited with status of '0' ## pull - Usage: docker pull [OPTIONS] NAME[:TAG] + Usage: docker pull [OPTIONS] NAME[:TAG] | [REGISTRY_HOST[:REGISTRY_PORT]/]NAME[:TAG] Pull an image or a repository from the registry @@ -1605,6 +1605,7 @@ use `docker pull`: $ sudo docker pull registry.hub.docker.com/debian # manually specifies the path to the default Docker registry. This could # be replaced with the path to a local registry to pull from another source. + # sudo docker pull myhub.com:8080/test-image ## push From 2c07fd9fdf78842b4a09ff9a226bd57ba500f16b Mon Sep 17 00:00:00 2001 From: John Willis Date: Thu, 26 Mar 2015 16:09:56 -0400 Subject: [PATCH 2/2] #11465 Add additional doc for locagi registries on pull command - for docker-pull.1.md Signed-off-by: John Willis --- docs/man/docker-pull.1.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/man/docker-pull.1.md b/docs/man/docker-pull.1.md index f1963df55..87a2838e5 100644 --- a/docs/man/docker-pull.1.md +++ b/docs/man/docker-pull.1.md @@ -8,7 +8,7 @@ docker-pull - Pull an image or a repository from the registry **docker pull** [**-a**|**--all-tags**[=*false*]] [**--help**] -NAME[:TAG] +NAME[:TAG] | [REGISTRY_HOST[:REGISTRY_PORT]/]NAME[:TAG] # DESCRIPTION @@ -67,3 +67,4 @@ April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work. June 2014, updated by Sven Dowideit August 2014, updated by Sven Dowideit +April 2015, updated by John Willis