码迷,mamicode.com
首页 > Web开发 > 详细

Docker configure http proxy

时间:2016-11-04 16:30:04      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:line   ble   image   mct   min   not   reg   mon   rest   

from: http://stackoverflow.com/questions/23111631/cannot-download-docker-images-behind-a-proxy

 

That‘s an old subject, but I‘ll give my two cents in case someone else is looking for advice.

Here is a link to the official docker doc for proxy http:https://docs.docker.com/engine/admin/systemd/#http-proxy

A quick outline:

First, create a systemd drop-in directory for the docker service:

mkdir /etc/systemd/system/docker.service.d

Now create a file called /etc/systemd/system/docker.service.d/http-proxy.conf that adds the HTTP_PROXY environment variable:

[Service]
Environment="HTTP_PROXY=http://proxy.example.com:80/"

If you have internal Docker registries that you need to contact without proxying you can specify them via the NO_PROXY environment variable:

Environment="HTTP_PROXY=http://proxy.example.com:80/"
Environment="NO_PROXY=localhost,127.0.0.0/8,docker-registry.somecorporation.com"

Flush changes:

$ sudo systemctl daemon-reload

Verify that the configuration has been loaded:

$ sudo systemctl show --property Environment docker
Environment=HTTP_PROXY=http://proxy.example.com:80/

Restart Docker:

$ sudo systemctl restart docker

Docker configure http proxy

标签:line   ble   image   mct   min   not   reg   mon   rest   

原文地址:http://www.cnblogs.com/pinganzi/p/6030488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!