Docker configure http proxy
Posted 嗡嘛呢巴美吽舍
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker configure http proxy相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
mybatis配置文件,注意标签配置顺序。否则报错The content of element type "configuration" must match "(pro
docker下来镜像error pulling image configuration:
qt打开.pro文件问啥会卡在configure project上
解决docker: error pulling image configuration: Get https://registry-1.docker.io/v2/library/mysql/: TLS
在 windows 10 pro 上安装 Docker 失败:需要 Windows 10 Pro/Enterprise/Home (18363+)