File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed
docs/reference/commandline Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ by a registry hostname. The hostname must comply with standard DNS rules, but
2929may not contain underscores. If a hostname is present, it may optionally be
3030followed by a port number in the format ` :8080 ` . If not present, the command
3131uses Docker's public registry located at ` registry-1.docker.io ` by default. Name
32- components may contain lowercase characters , digits and separators. A separator
32+ components may contain lowercase letters , digits and separators. A separator
3333is defined as a period, one or two underscores, or one or more dashes. A name
3434component may not start or end with a separator.
3535
36- A tag name may contain lowercase and uppercase characters, digits, underscores ,
37- periods and dashes. A tag name may not start with a period or a dash and may
38- contain a maximum of 128 characters.
36+ A tag name must be valid ASCII and may contain lowercase and uppercase letters ,
37+ digits, underscores, periods and dashes. A tag name may not start with a
38+ period or a dash and may contain a maximum of 128 characters.
3939
4040You can group your images together using names and tags, and then upload them
4141to [ * Share Images via Repositories* ] ( https://docs.docker.com/engine/tutorials/dockerrepos/#/contributing-to-docker-hub ) .
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ This specification uses the following terms:
9292 often referred to as a tag as well, though it strictly refers to the
9393 full name of an image. Acceptable values for a tag suffix are
9494 implementation specific, but they SHOULD be limited to the set of
95- alphanumeric characters <code>[a-zA-z0 -9]</code>, punctuation
95+ alphanumeric characters <code>[a-zA-Z0 -9]</code>, punctuation
9696 characters <code>[._-]</code>, and MUST NOT contain a <code>:</code>
9797 character.
9898 </dd>
@@ -105,7 +105,7 @@ This specification uses the following terms:
105105 <code>my-app:3.1.4</code>, <code>my-app</code> is the <i>Repository</i>
106106 component of the name. Acceptable values for repository name are
107107 implementation specific, but they SHOULD be limited to the set of
108- alphanumeric characters <code>[a-zA-z0 -9]</code>, and punctuation
108+ alphanumeric characters <code>[a-zA-Z0 -9]</code>, and punctuation
109109 characters <code>[._-]</code>, however it MAY contain additional
110110 <code>/</code> and <code>:</code> characters for organizational
111111 purposes, with the last <code>:</code> character being interpreted
Original file line number Diff line number Diff line change @@ -9,15 +9,16 @@ entire image name including the optional `TAG` after the ':'.
99 present, it may optionally be followed by a port number in the format
1010 ` :8080 ` . If not present, the command uses Docker's public registry located at
1111 ` registry-1.docker.io ` by default. Name components may contain lowercase
12- characters , digits and separators. A separator is defined as a period, one or
12+ letters , digits and separators. A separator is defined as a period, one or
1313 two underscores, or one or more dashes. A name component may not start or end
1414 with a separator.
1515
1616** TAG**
1717 The tag assigned to the image to version and distinguish images with the same
18- name. The tag name may contain lowercase and uppercase characters, digits,
19- underscores, periods and dashes. A tag name may not start with a period or a
20- dash and may contain a maximum of 128 characters.
18+ name. The tag name must be valid ASCII and may contain lowercase and
19+ uppercase letters, digits, underscores, periods and hyphens. A tag name
20+ may not start with a period or a hyphen and may contain a maximum of 128
21+ characters.
2122
2223# EXAMPLES
2324
You can’t perform that action at this time.
0 commit comments