方法步骤
1.修改/etc/docker/daemon.json文件
vi /etc/docker/daemon.json
将以下内容写入该文件
{
"max-concurrent-downloads": 10,
"max-concurrent-uploads": 5,
"default-shm-size": "1G",
"debug": true,
"experimental": false,
"registry-mirrors":[
"https://x9r52uz5.mirror.aliyuncs.com",
"https://dockerhub.icu",
"https://docker.chenby.cn",
"https://docker.1panel.live",
"https://docker.awsl9527.cn",
"https://docker.anyhub.us.kg",
"https://dhub.kubesre.xyz"
]
}
复制完之后输入:wq,即可退出保存。
2.重新加载daemon文件,重启docker。
sudo systemctl daemon-reload
sudo systemctl restart docker
完成上述操作之后,可以成功pull。