Ho installato Docker sul mio Ubuntu 13.10 (Saucy Salamander) e quando scrivo nella mia console:
sudo docker pull busybox
Ottengo il seguente errore:
Pulling repository busybox
2014/04/16 09:37:07 Get https://index.docker.io/v1/repositories/busybox/images: dial tcp: lookup index.docker.io on 127.0.1.1:53: no answer from server
Versione Docker:
$ sudo docker version
Client version: 0.10.0
Client API version: 1.10
Go version (client): go1.2.1
Git commit (client): dc9c28f
Server version: 0.10.0
Server API version: 1.10
Git commit (server): dc9c28f
Go version (server): go1.2.1
Last stable version: 0.10.0
Sono dietro un server proxy senza autenticazione e questo è il mio /etc/apt/apt.conf
file:
Acquire::http::proxy "http://192.168.1.1:3128/";
Acquire::https::proxy "https://192.168.1.1:3128/";
Acquire::ftp::proxy "ftp://192.168.1.1:3128/";
Acquire::socks::proxy "socks://192.168.1.1:3128/";
Che cosa sto facendo di sbagliato?
Acquire::socks::proxy
significa impostare il proxy per tutti gli URL che iniziano con uno socks
schema. Dal momento che il tuo sources.list
non ha alcun socks://
URL, quella linea viene completamente ignorata.
docker-compose
?