ฉันติดตั้ง Docker บน Ubuntu 13.10 (Saucy Salamander) ของฉันและเมื่อฉันพิมพ์ในคอนโซล:
sudo docker pull busybox
ฉันได้รับข้อผิดพลาดต่อไปนี้:
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
รุ่นนักเทียบท่า:
$ 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
ฉันอยู่หลังพร็อกซีเซิร์ฟเวอร์ที่ไม่มีการตรวจสอบสิทธิ์และนี่คือ/etc/apt/apt.conf
ไฟล์ของฉัน:
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/";
ผมทำอะไรผิดหรือเปล่า?
Acquire::socks::proxy
หมายถึงตั้งค่าพร็อกซีสำหรับ URL ทั้งหมดที่เริ่มต้นด้วยsocks
สกีม เนื่องจากคุณsources.list
ไม่มีsocks://
URL ใด ๆ เลยบรรทัดนั้นจึงถูกละเว้นทั้งหมด
docker-compose
อะไร