使用docker pull从镜像仓库拉取镜像时报错

Posted mrrr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用docker pull从镜像仓库拉取镜像时报错相关的知识,希望对你有一定的参考价值。

[[email protected] ~]# docker pull centos
Using default tag: latest
Trying to pull repository docker.io/library/centos ...
Get https://registry-1.docker.io/v2/: dial tcp: lookup registry-1.docker.io on 119.29.29.29:53: read udp 192.168.100.100:59205->119.29.29.29:53: i/o timeout

解决办法:
[[email protected] etc]# yum install bind-utils // 安装dig工具
[[email protected] etc]# dig @114.114.114.114 registry-1.docker.io

选择上面命令执行结果中的一组解析放到本机的/etc/hosts文件里做映射
[[email protected] etc]# vim /etc/hosts

54.175.43.85 registry-1.docker.io
接着再进行docker pull镜像下载操作








以上是关于使用docker pull从镜像仓库拉取镜像时报错的主要内容,如果未能解决你的问题,请参考以下文章

docker镜像拉取失败

docker 更换国内镜像仓库

Docker 命令- pull命令

Docker命令-docker pull

如何将本地docker 镜像上传到我的私有仓库

Docker 基础 : 镜像