Skip to content

Instantly share code, notes, and snippets.

@b4tman
Last active August 5, 2024 10:32
Show Gist options
  • Save b4tman/2424015efb60eb2bd3b9c60f53de6ffe to your computer and use it in GitHub Desktop.
Save b4tman/2424015efb60eb2bd3b9c60f53de6ffe to your computer and use it in GitHub Desktop.
docker registry mirrors (/etc/docker/daemon.json) + podman (/etc/containers/registries.conf)
{
"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"
]
}
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