Non riesco a eseguire alcun comando che richieda una connessione Internet all'interno di qualsiasi contenitore Docker.
Lavori:
docker run ubuntu /bin/echo 'Hello world'
Non funziona:
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'
Simile con pip
e ping
.
Sono su Ubuntu 16.04 e non utilizzo firewall o server proxy aziendale e ho provato a riavviare Docker.
UPD:
L'aggiornamento in modalità interattiva non riesce allo stesso modo.
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
funziona correttamente sull'host, cioè sul mio computer al di fuori della finestra mobile.
Aggiorna Docker versione 1.12.1, build 23cf638
apt-get update
mentre sei in modalità interattiva con la finestra mobile?