Solve the DNS issue when play docker on ubuntu

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.

  1. Check you local DNS
nmcli dev show|grep "IP4.DNS"
IP4.DNS[1]:                             xxx.xxx.xxx.xxx
  1. Create or modify /etc/docker/daemon.json
sudo vim /etc/docker/daemon.json
{
  "dns": ["xxx.xxx.xxx.xxx","8.8.8.8"]
}
  1. Restart docker service
sudo service docker restart

Extend learning

How docker DNS works? see this article

    原文作者:qingguee
    原文地址: https://www.jianshu.com/p/cf5e2f7c8ebe
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞