docker 拉取镜像出错

docker 拉取镜像出错

如果你的docker在拉取镜像时出现如下问题:error pulling image configuration: download failed after attempts=6: dial tcp 103.214.168.106:443: 不要怀疑就是因为镜像源不通。

解决方案

寻找可用的镜像加速我这里提供一种可用的镜像加速,目前测试可用。


{
    "registry-mirrors": [
        "https://docker.m.daocloud.io"
    ]
}

  • 修改 vim /etc/docker/daemon.json
vim /etc/docker/daemon.json
{
    "registry-mirrors": [
        "https://docker.m.daocloud.io"
    ]
}
  • 重新加载配置文件
systemctl daemon-reload
  • 重启docker
systemctl restart docker

你可能感兴趣的:(docker,bug,eureka,云原生)