Je ne peux exécuter aucune commande nécessitant une connexion Internet dans un conteneur Docker.
Travaux:
docker run ubuntu /bin/echo 'Hello world'
Ne marche pas:
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'
Similaire avec pip
et ping
.
Je suis sur Ubuntu 16.04 et n'utilise pas de pare-feu ou de serveur proxy d'entreprise et j'ai essayé de redémarrer Docker.
Mise à jour:
La mise à jour en mode interactif échoue de la même manière.
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
fonctionne avec succès sur l'hôte, c'est-à-dire sur mon ordinateur en dehors de docker.
Upd Docker version 1.12.1, build 23cf638
apt-get update
en mode interactif avec le docker?