镜像地址(NAS里可直接添加后,通常就正常使用了):

https://docker.ygys.xyz

1、客户端 可手动通过命令设置【注册表镜像】,然后正常命令拉取加速镜像:

sudo tee /etc/docker/daemon.json <<EOF
{
    "registry-mirrors": ["https://docker.ygys.xyz"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

2、或者 临时的拉取方法(不用修改或添加镜像源):

原拉取镜像命令

docker pull library/alpine:latest

加速拉取镜像命令

docker pull docker.ygys.xyz/library/alpine:latest