-
-
Save AlexeySetevoi/c733488b6ad864d303d5b6b1f6d1875d to your computer and use it in GitHub Desktop.
docker registry mirrors (/etc/docker/daemon.json) + podman (/etc/containers/registries.conf)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"registry-mirrors" : [ | |
"https://cr.yandex/mirror", | |
"https://dockerhub.timeweb.cloud", | |
"https://huecker.io", | |
"https://noohub.ru", | |
"https://dcr-px.ru", | |
"https://mirror.gcr.io", | |
"https://quay.io", | |
"https://registry.access.redhat.com", | |
"https://registry.redhat.io", | |
"https://public.ecr.aws", | |
"https://daocloud.io", | |
"https://c.163.com", | |
"https://registry.docker-cn.com" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unqualified-search-registries = ['docker.io'] | |
[[registry]] | |
prefix = "docker.io" | |
location = "docker.io" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "cr.yandex/mirror" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "dockerhub.timeweb.cloud" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "huecker.io" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "noohub.ru" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "dcr-px.ru" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "mirror.gcr.io" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "dockerhub1.beget.com" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "quay.io" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "registry.access.redhat.com" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "registry.redhat.io" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "public.ecr.aws" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "daocloud.io" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "c.163.com" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "registry.docker-cn.com" | |
[[registry.mirror]] | |
prefix = "docker.io" | |
location = "docker.mirrors.ustc.edu.cn" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment