解决docker pull很慢的方法

经常拉取镜像的时候很慢或者拉不下来,这里可以使用阿里云镜像加速器,然后试试看有没有效果
使用阿里云镜像加速器

[root@localhost ~]# mkdir -p /etc/docker
[root@localhost ~]# tee /etc/docker/daemon.json <<-'EOF'
{
 "registry-mirrors": ["https://9cpn8tt6.mirror.aliyuncs.com"]
}
 EOF
[root@localhost ~]# systemctl daemon-reload
[root@localhost ~]# systemctl restart docker
原文地址:https://www.cnblogs.com/MeiCheng/p/10300258.html