背景
在一些實驗室環(huán)境,服務器沒有直接連接外網(wǎng)的權限,需要通過網(wǎng)絡代理。我們通常會將網(wǎng)絡代理直接配置在/etc/environment、/etc/profile之類的配置文件中,這對于大部分操作都是可行的。然而,docker命令卻使用不了這些代理。比如docker pull時需要從外網(wǎng)下載鏡像,就會出現(xiàn)如下錯誤:
$ 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服務,手動以使用2375端口監(jiān)聽所有網(wǎng)絡接口的方式啟動docker daemon。
$ systemctl stop docker.service $ nohup docker daemon -H tcp://0.0.0.0:2375 -H unix:///var/run/docker.sock &
延伸閱讀
- ssh框架 2016-09-30
- 阿里移動安全 [無線安全]玩轉無線電——不安全的藍牙鎖 2017-07-26
- 消息隊列NetMQ 原理分析4-Socket、Session、Option和Pipe 2024-03-26
- Selective Search for Object Recognition 論文筆記【圖片目標分割】 2017-07-26
- 詞向量-LRWE模型-更好地識別反義詞同義詞 2017-07-26
- 從棧不平衡問題 理解 calling convention 2017-07-26
- php imagemagick 處理 圖片剪切、壓縮、合并、插入文本、背景色透明 2017-07-26
- Swift實現(xiàn)JSON轉Model - HandyJSON使用講解 2017-07-26
- 阿里移動安全 Android端惡意鎖屏勒索應用分析 2017-07-26
- 集合結合數(shù)據(jù)結構來看看(二) 2017-07-26