背景
在一些實(shí)驗(yàn)室環(huán)境,服務(wù)器沒有直接連接外網(wǎng)的權(quán)限,需要通過網(wǎng)絡(luò)代理。我們通常會(huì)將網(wǎng)絡(luò)代理直接配置在/etc/environment、/etc/profile之類的配置文件中,這對(duì)于大部分操作都是可行的。然而,docker命令卻使用不了這些代理。比如docker pull時(shí)需要從外網(wǎng)下載鏡像,就會(huì)出現(xiàn)如下錯(cuò)誤:
$ docker pull hello-world Unable to find image 'hello-world:latest' locally Pulling repository docker.io/library/hello-world docker: Network timed out while trying to connect to https://index.docker.io/v1/repositories/library/hello-world/images. You may want to check your internet connection or if you are behind a proxy..See 'docker run --help'.
ps: 本文在Ubuntu16.04下測試通過。
解決方案一:
停止docker服務(wù),手動(dòng)以使用2375端口監(jiān)聽所有網(wǎng)絡(luò)接口的方式啟動(dòng)docker daemon。
$ systemctl stop docker.service $ nohup docker daemon -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock &