docker&&Could not reach any registry endpoint
docker&&Could not reach any registry endpoint错误示例:问题分析:解决方法错误示例:root@tcpserver01HZ:~# docker run -d -p 22 tutum/ubuntu:14.04Unable to find image 'tutum/ubuntu:14.04' locallyPulling reposit...
·
错误示例:
root@tcpserver01HZ:~# docker run -d -p 22 tutum/ubuntu:14.04
Unable to find image 'tutum/ubuntu:14.04' locally
Pulling repository tutum/ubuntu
FATA[0006] Could not reach any registry endpoint
问题分析:
失败原因大概是服务器没有成功访问到docker仓库。
解决方法
如果使用apt-get install docker安装ubuntu自带的docker,可能版本比较低,这样有可能在docker pull时会遇到“Could not reach any registry endpoint”的错误。
解决方案就是安装docker提供的版本:
#apt-get install -y curl
#curl -sSL https://get.docker.com/ | sudo sh
参考文献:https://www.cnblogs.com/coldsword/p/5368567.html
更多推荐
已为社区贡献2条内容
所有评论(0)