Accelerate Docker Images Instructions

To speed up image pulling, you can set the registry mirror using the following command:


sudo tee /etc/docker/daemon.json <<EOF
{
    "registry-mirrors": ["https://docker-proxy.neige.xyz"]
}
EOF

Usage:

Original command


docker pull library/alpine:latest

New command


docker pull docker-proxy.neige.xyz/library/alpine:latest