From 5d504d032ae667cfbd96509f7fb79e545473887e Mon Sep 17 00:00:00 2001 From: William Henry Date: Sun, 1 Jun 2014 17:16:14 -0600 Subject: [PATCH] Changed the term rename to alias etc. Docker-DCO-1.1-Signed-off-by: William Henry (github: ipbabble) Changes to be committed: modified: contrib/man/md/docker-tag.1.md Upstream-commit: 2858180a9a05dad999df0f4d9adc9750b0fb1c66 Component: engine --- components/engine/contrib/man/md/docker-tag.1.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/engine/contrib/man/md/docker-tag.1.md b/components/engine/contrib/man/md/docker-tag.1.md index eca821ebff..0c42769908 100644 --- a/components/engine/contrib/man/md/docker-tag.1.md +++ b/components/engine/contrib/man/md/docker-tag.1.md @@ -9,12 +9,12 @@ docker-tag - Tag an image in the repository IMAGE [REGISTRYHOST/][USERNAME/]NAME[:TAG] # DESCRIPTION -This will rename an image in the repository. This refers to the +This will give a new alias to an image in the repository. This refers to the entire image name including the optional TAG after the ':'. # "OPTIONS" **-f**, **--force**=*true*|*false* - When set to true, force the tag name. The default is *false*. + When set to true, force the alias. The default is *false*. **REGISTRYHOST** The hostname of the registry if required. This may also include the port @@ -33,9 +33,9 @@ Note that here TAG is a part of the overall name or "tag". # EXAMPLES -## Tagging an image +## Giving an image a new alias -Here is an example of renaming an image (e.g. 0e5574283393) as "httpd" and +Here is an example of aliasing an image (e.g. 0e5574283393) as "httpd" and tagging it into the "fedora" repository with "version1.0": docker tag 0e5574283393 fedora/httpd:version1.0