Docker Registry

Enjoy Docker at blazing-fast speeds!

How to use?

1

Edit Docker Configuration

Use the command below to add the Docker registry mirror to Docker settings.

sudo tee /etc/docker/daemon.json <<"EOF"
{
    "registry-mirrors": ["https://docker.nrp.co"]
}
EOF
2

Restart Docker Service

Restart the Docker service to apply the changes.

sudo systemctl restart docker
3

Test Image Download

Now you can pull Docker images at high speed.

docker pull hello-world