镜像加速说明

方法1:

执行下方命令之后重启docker: systemctl restart docker


tee /etc/docker/daemon.json <<EOF
{
    "registry-mirrors": ["https://docker.wej.cc"]
}
EOF

方法2:

原拉取镜像命令


docker pull library/alpine:latest

加速拉取镜像命令


docker pull docker.wej.cc/library/alpine:latest