@@ -19,31 +19,31 @@ parent = "smn_cli"
1919An image name is made up of slash-separated name components, optionally prefixed
2020by a registry hostname. The hostname must comply with standard DNS rules, but
2121may not contain underscores. If a hostname is present, it may optionally be
22- followed by a port number in the format ` :8080 ` . If not present, the command
23- uses Docker's public registry located at ` registry-1.docker.io ` by default. Name
24- components may contain lowercase characters, digits and separators. A separator
25- is defined as a period, one or two underscores, or one or more dashes. A name
22+ followed by a port number in the format ` :8080 ` . If not present, the command
23+ uses Docker's public registry located at ` registry-1.docker.io ` by default. Name
24+ components may contain lowercase characters, digits and separators. A separator
25+ is defined as a period, one or two underscores, or one or more dashes. A name
2626component may not start or end with a separator.
2727
2828A tag name may contain lowercase and uppercase characters, digits, underscores,
2929periods and dashes. A tag name may not start with a period or a dash and may
3030contain a maximum of 128 characters.
3131
3232You can group your images together using names and tags, and then upload them
33- to [ * Share Images via Repositories* ] ( ../../userguide/containers /dockerrepos.md#contributing-to-docker-hub ) .
33+ to [ * Share Images via Repositories* ] ( ../../tutorials /dockerrepos.md#contributing-to-docker-hub ) .
3434
3535# Examples
3636
3737## Tagging an image referenced by ID
3838
39- To tag a local image with ID "0e5574283393" into the "fedora" repository with
39+ To tag a local image with ID "0e5574283393" into the "fedora" repository with
4040"version1.0":
4141
4242 docker tag 0e5574283393 fedora/httpd:version1.0
4343
4444## Tagging an image referenced by Name
4545
46- To tag a local image with name "httpd" into the "fedora" repository with
46+ To tag a local image with name "httpd" into the "fedora" repository with
4747"version1.0":
4848
4949 docker tag httpd fedora/httpd:version1.0
0 commit comments