We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c156ee6 + 544991a commit ff17045Copy full SHA for ff17045
pkg/imgutil/dockerconfigresolver/registryurl.go
@@ -102,8 +102,10 @@ func (rn *RegistryURL) AllIdentifiers() []string {
102
103
// Docker behavior: if the domain was index.docker.io over 443, we are allowed to additionally read the canonical
104
// docker credentials
105
- if rn.Hostname() == "index.docker.io" && rn.Port() == standardHTTPSPort {
106
- fullList = append(fullList, dockerIndexServer)
+ if rn.Port() == standardHTTPSPort {
+ if rn.Hostname() == "index.docker.io" || rn.Hostname() == "registry-1.docker.io" {
107
+ fullList = append(fullList, dockerIndexServer)
108
+ }
109
}
110
111
// Add legacy variants
0 commit comments