Problema no DNS com a imagem do docker

3

Estou usando o docker no meu host Ubuntu e quero criar uma imagem de fantasia com alguns pacotes de desenvolvimento.

Sempre que eu corro

docker run -it ubuntu apt-get update

Ele não resolve o host e lança abaixo do log de erros

Err:1 http://archive.ubuntu.com/ubuntu xenial InRelease
  Temporary failure resolving 'archive.ubuntu.com'
Err:2 http://archive.ubuntu.com/ubuntu xenial-updates InRelease
  Temporary failure resolving 'archive.ubuntu.com'
Err:3 http://archive.ubuntu.com/ubuntu xenial-security InRelease
  Temporary failure resolving 'archive.ubuntu.com'
Reading package lists... Done        
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/xenial/InRelease  Temporary failure resolving 'archive.ubuntu.com'
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease  Temporary failure resolving 'archive.ubuntu.com'
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/xenial-security/InRelease  Temporary failure resolving 'archive.ubuntu.com'
W: Some index files failed to download. They have been ignored, or old ones used instead.

A saída de docker run -it ubuntu more /etc/resolv.conf é

search company.com
nameserver 8.8.8.8
nameserver 8.8.4.4

Observação: company.com é o domínio da minha organização

saída de docker network inspect bridge é

[
    {
        "Name": "bridge",
        "Id": "ee1a3e8cac6fdc0be630ae027957345b63977b6bb74cec04a9200f1ad8f895f7",
        "Created": "2017-02-09T21:46:05.235449663+05:00",
        "Scope": "local",
        "Driver": "bridge",
        "EnableIPv6": false,
        "IPAM": {
            "Driver": "default",
            "Options": null,
            "Config": [
                {
                    "Subnet": "172.17.0.0/16",
                    "Gateway": "172.17.0.1"
                }
            ]
        },
        "Internal": false,
        "Attachable": false,
        "Containers": {},
        "Options": {
            "com.docker.network.bridge.default_bridge": "true",
            "com.docker.network.bridge.enable_icc": "true",
            "com.docker.network.bridge.enable_ip_masquerade": "true",
            "com.docker.network.bridge.host_binding_ipv4": "0.0.0.0",
            "com.docker.network.bridge.name": "docker0",
            "com.docker.network.driver.mtu": "1500"
        },
        "Labels": {}
    }
]
    
por Zeeshan Bilal 10.02.2017 / 10:44

1 resposta

1

O que funcionou para mim foi este guia.

de link (YOUR_DNS_IP_HERE é meu acréscimo)

  

Coloque isso em /etc/docker/daemon.json:

{                                                                     
    "dns": ["YOUR_DNS_IP_HERE", "YOUR_DNS_IP_HERE"]   
}
     

Sair da raiz:

 exit
     

Agora reinicie o docker:

sudo service docker restart
     

VERIFICAÇÃO:

     

Agora verifique se adicionar o arquivo /etc/docker/daemon.json permite que você   resolva 'google.com' em um endereço IP:

docker run busybox nslookup google.com
    
por DeveloperACE 13.02.2018 / 20:12