在/etc/docker/daemon.json文件中写入
{
"registry-mirrors": [
]
}
执行
systemctl daemon-reload
systemctl restart docker
docker info能够看到源已经被替换
现在国内能够使用的docker源经过测试只有Welcome to nginx!
由于使用docker pull和docker search命令默认还是会使用默认的index.docker.io源,因此在执行pull的时候必须指定源,例如
docker pull ccr.ccs.tencentyun.com/library/centos:latest