web-dev-qa-db-ja.com

Dockerイメージに関するDNSの問題

Ubuntuホストでdockerを使用していますが、いくつかの開発パッケージでコスチュームイメージを構築したいと考えています。

いつでも走る

docker run -it ubuntu apt-get update

ホストを解決せず、エラーログの下にスローします

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.

docker run -it ubuntu more /etc/resolv.confの出力は

search company.com
nameserver 8.8.8.8
nameserver 8.8.4.4

注:company.comは私の組織のドメインです

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": {}
    }
]
4
Zeeshan Bilal

私のために働いたのは this ガイドでした。

from https://stackoverflow.com/a/40516974 (YOUR_DNS_IP_HEREは私の追加です)

これを/etc/docker/daemon.jsonに配置します。

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

ルートを終了します。

 exit

次に、Dockerを再起動します。

Sudo service docker restart

検証:

/etc/docker/daemon.jsonファイルを追加すると、「google.com」をIPアドレスに解決できることを確認します。

docker run busybox nslookup google.com
3
DeveloperACE