https://status.anye.xyz/status/dockerhttps://status.1panel.top/status/dockerhttps://blog.csdn.net/weixin_39504040/article/details/138994875

使用方法①——临时使用:替换拉取镜像地址

# 原拉取镜像命令
docker pull library/alpine:latest
# 改为加速拉取镜像命令
docker pull docker.anye.in/library/alpine:latest

使用方法②——全局配置:配置镜像加速

# 创建或修改 /etc/docker/daemon.json 配置文件
sudo tee /etc/docker/daemon.json <<EOF
{
"registry-mirrors": ["https://docker.1ms.run"]
}
EOF
# 重载systemd管理守护进程配置文件
sudo systemctl daemon-reload
# 重启 Docker 服务
sudo systemctl restart docker