docker镜像加速说明

lijunyi2024-11-06DockerDocker

原加速镜像失效说明

原加速镜像https://docker.211678.top 被墙了,导致无法使用。现在已更换新域名https://hub.211678.top,如使用本站docker加速镜像,请及时更换最新。

镜像加速说明

为了加速镜像拉取,使用以下命令设置registry mirror:

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

用法:

原拉取镜像命令:

docker pull library/alpine:latest

加速拉取镜像命令:

docker pull hub.211678.top/library/alpine:latest
Last Updated 2024/6/12 12:21:03