当安装了 docker
一、配置配件好了阿里 镜像加速器
- 拉取镜像报:docker: error pulling image configuration: download failed after attempts=6: dial tcp 69.63.176.59:443: connect: connection refused.
- 这是镜像的问题,不是你的问题没
二、标题这个时候我们只需要更好镜像即可
vim /etc/docker/daemon.json
修改为 :一下内容,然后保存并退出
{
"registry-mirrors": [
"https://registry.docker-cn.com",
"https://docker.mirrors.ustc.edu.cn",
"https://hub-mirror.c.163.com",
"https://hub.uuuadc.top",
"https://docker.anyhub.us.kg",
"https://dockerhub.jobcher.com",
"https://dockerhub.icu",
"https://docker.ckyl.me",
"https://docker.awsl9527.cn",
"https://mirror.baidubce.com"
]
}
非常好用