启动docker(一定要先启动再添加dns)
systemctl start docker
#添加国境镜像和dns
sudo vim /etc/docker/daemon.json
{
"registry-mirrors":[
"https://register.librax.org",
"https://docker-0.unsee.tech",
"https://docker-cf.registry.cyou",
],
"dns" : [
"8.8.8.8",
"114.114.114.114"
]
}
重启docker
systemctl restart docker