Operations 3 min read

Speed Up Docker Pulls with Free Registry Mirror URLs

This guide lists several free Docker registry mirror URLs, shows how to add them to the daemon.json file, and explains the steps to restart Docker so that image pulls are faster and more reliable.

Full-Stack DevOps & Kubernetes
Full-Stack DevOps & Kubernetes
Full-Stack DevOps & Kubernetes
Speed Up Docker Pulls with Free Registry Mirror URLs

Many users have reported that previously shared Docker registry mirror addresses are no longer functional. Below is a curated list of currently working mirror URLs that can be used to accelerate Docker image pulls.

{
  "registry-mirrors": [
    "https://a88uijg4.mirror.aliyuncs.com",
    "https://docker.lmirror.top",
    "https://docker.m.daocloud.io",
    "https://hub.uuuadc.top",
    "https://docker.anyhub.us.kg",
    "https://dockerhub.jobcher.com",
    "https://dockerhub.icu",
    "https://docker.ckyl.me",
    "https://docker.awsl9527.cn",
    "https://docker.laoex.link"
  ]
}

To apply these mirrors, create or edit the /etc/docker/daemon.json file on each Docker host and insert the JSON snippet above. After saving the file, restart the Docker daemon with: systemctl restart docker Once the daemon restarts, Docker will use the specified mirrors for docker pull operations, resulting in faster downloads from Docker Hub.

Note: Copying the configuration directly from the public account may introduce character encoding issues; it is recommended to download the daemon.json file directly or copy the JSON snippet carefully.

Dockeroperationscontainerdaemon.jsonregistry-mirror
Full-Stack DevOps & Kubernetes
Written by

Full-Stack DevOps & Kubernetes

Focused on sharing DevOps, Kubernetes, Linux, Docker, Istio, microservices, Spring Cloud, Python, Go, databases, Nginx, Tomcat, cloud computing, and related technologies.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.