Dockerコンテナー内でインターネット接続を必要とするコマンドを実行できません。
作品:
docker run ubuntu /bin/echo 'Hello world'
動作しません:
docker run 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...
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'
pip
およびと同様ping
です。
Ubuntu 16.04を使用していますが、ファイアウォールや企業のプロキシサーバーを使用していないため、Dockerを再起動しようとしました。
更新:
対話モードでの更新も同じ方法で失敗します。
docker exec -ti angry_goodall /bin/bash
apt-get update
#fails
ping google.com
#fails with "unknown host" message
ping 8.8.8.8
# shows PING 8.8.8.8 (8.8.8.8): 56 data bytes
# and than hangs indefinetly
sudo apt-get update
ホスト、つまり、ドッカーの外部のコンピューターで正常に実行されます。
Upd Dockerバージョン1.12.1、ビルド23cf638
apt-get update
Dockerでインタラクティブモードで実行できますか?