docker配置代理访问
Posted wh-blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker配置代理访问相关的知识,希望对你有一定的参考价值。
问题:
在一些内部系统中,一些电脑无法直接访问外网,只能通过代理服务器上网,当使用代理服务器上网时,正常的设置,不能访问到docker hub。
解决,配置docker代理:
Ubuntu 14.04 : 修改 /etc/default/docker 文件,添加http、https的代理
export http_proxy="http://ip:port/"
export https_proxy="https://ip:port/"
重启docker服务,sudo service docker restart
Ubuntu 16.04+:
创建文件夹/etc/systemd/system/docker.service.d
创建文件 /etc/systemd/system/docker.service.d/http-proxy.conf
添加行:
[Service]
Environment="HTTP_PROXY=http://ip:port/"
Environment="HTTPS_PROXY=https://ip:port/"
重启docker
sudo systemctl daemon-reload
sudo systemctl restart docker
以上是关于docker配置代理访问的主要内容,如果未能解决你的问题,请参考以下文章
Docker集群实验环境布署--swarm6 配置上层Nginx代理,让任意Docker client访问得到高可用的管理API