国内镜像中心常用阿里云或者网易云。在本地docker中指定要使用国内加速器的地址后,就可以直接从阿里云镜像中心下载镜像。
[root@localhost /]# mkdir -p /etc/docker
[root@localhost /]# tee /etc/docker/daemon.json <<-'EOF'
> {
> "registry-mirrors": ["https://k58godud.mirror.aliyuncs.com"]
> }
> EOF
{
"registry-mirrors": ["https://k58godud.mirror.aliyuncs.com"]
}
[root@localhost /]# systemctl daemon-reload
[root@localhost /]# systemctl restart docker