Não consigo executar nenhum comando que exija conexão à Internet em qualquer contêiner do Docker.
Trabalho:
docker run ubuntu /bin/echo 'Hello world'
Não funciona:
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'
Similar com pip
e ping
.
Estou no Ubuntu 16.04 e não estou usando firewall ou servidor proxy corporativo e tentei reiniciar o Docker.
Upd:
A atualização no modo interativo falha da mesma maneira.
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
é executado com êxito no host, ou seja, no meu computador fora da janela de encaixe.
Atualize o Docker versão 1.12.1, compilação 23cf638
apt-get update
no modo interativo com a janela de encaixe?