Solve the DNS issue when play docker on ubuntu
标签:
Kubernetes
Solve the DNS issue when play docker on ubuntu
Docker 在Ubuntu上面的dns问题
Issue description
Recently, I met an issue during dockerfile building. When I try to build a docker image on Ubuntu 16.04.3, it always failed. After a few checking, I found that the DNS does not work in container.
The impact is that, if my dockerfile has update actions (apt updat/apk update), it never works. In this case, I can't install any software during docker image building.
Environment
Ubuntu 16.04.3
docker-ce 17.09.0-ce
Solve docker DNS issue on ubuntu
I checked many solution online, there is a simple way to solve this.
Check you local DNS
nmcli dev show|grep "IP4.DNS"IP4.DNS[1]: xxx.xxx.xxx.xxx
Create or modify /etc/docker/daemon.json
sudo vim /etc/docker/daemon.json { "dns": ["xxx.xxx.xxx.xxx","8.8.8.8"] }
Restart docker service
sudo service docker restart
Extend learning
How docker DNS works? see this article
作者:qingguee
链接:https://www.jianshu.com/p/cf5e2f7c8ebe
。
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦