我是靠谱客的博主 温柔唇膏,最近开发中收集的这篇文章主要介绍make docker报错 Temporary failure resolving解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
make docker 时执行到命令RUN apt-get update && apt-get install -y netcat && rm -rf /var/cache/apt 时出现以下错误
Err:1 http://security.ubuntu.com/ubuntu xenial-security InRelease
Temporary failure resolving 'security.ubuntu.com'
Err:2 http://archive.ubuntu.com/ubuntu xenial InRelease
Temporary failure resolving 'archive.ubuntu.com'
Err:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease
Temporary failure resolving 'archive.ubuntu.com'
Err:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease
Temporary failure resolving 'archive.ubuntu.com'
网上大多的解决方案是修改/etc/resolv.conf ,添加nameserver。
在我的测试环境上实际上是不好使的。
修改以下文件
sudo vim
/etc/default/docker
将 DOCKER_OPTS前的#去掉,使
DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4" 生效。
重启docker
sudo service docker restart
然后重新执行 make docker 。
最后
以上就是温柔唇膏为你收集整理的make docker报错 Temporary failure resolving解决方法的全部内容,希望文章能够帮你解决make docker报错 Temporary failure resolving解决方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复