Docker 拉取 报错【error pulling image configuration】及镜像下载慢问题
Docker 拉取 报错【error pulling image configuration】及镜像下载慢问题原因: 出现这个问题原因为网络问题,无法连接到 docker hub。 但国内有daocloud加速,docker指定该源即可echo "DOCKER_OPTS=\"\$DOCKER_OPTS --registry-mirror=http://f2d6cb4...
·
Docker 拉取 报错【error pulling image configuration】及镜像下载慢问题
原因:
出现这个问题原因为网络问题,无法连接到 docker hub。 但国内有 daocloud加速,docker指定该源即可
echo "DOCKER_OPTS=\"\$DOCKER_OPTS --registry-mirror=http://f2d6cb40.m.daocloud.io\"" | sudo tee -a /etc/default/docker
DOCKER_OPTS="$DOCKER_OPTS --registry-mirror=http://f2d6cb40.m.daocloud.io"
镜像下载慢问题:
vi /etc/docker/daemon.json
[root@192]# vi /etc/docker/daemon.json
- 添加以下内容:
{
"registry-mirrors": ["https://hccwwfjl.mirror.aliyuncs.com"]
}
重新启动Docker
systemctl restart docker
[root@192]# systemctl restart docker
更多推荐
已为社区贡献1条内容
所有评论(0)