Centos7 docker使用https_proxy 代理配置
2021-07-11 20:03
阅读:563
在centos6版本如果你配置Docker 的https_proxy 代理,只需要在/etc/sysconfig/docker配置文件里面增加配置即可,但在centos7 你会发现已经无法使用这样的配置方式进行https_proxy 配置,因为centos使用systemd 来管理进程环境,我们需要如下配置来应用https_proxy 配置
创建目录
mkdir /etc/systemd/system/docker.service.d创建文件
touch /etc/systemd/system/docker.service.d/http-proxy.conf配置http-proxy.conf文件增加以下内容
[Service]Environment="HTTP_PROXY=http://proxy.ip.com:80"
daemon重新reload 并重启docker
systemctl daemon-reloadsystemctl restart docker
检查变量是否加载
systemctl show docker --property Environment
上一篇:python 列表与字典相互转换
下一篇:CSS3学习手记(11) 动画
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:Centos7 docker使用https_proxy 代理配置
文章链接:http://soscw.com/index.php/essay/103824.html
文章标题:Centos7 docker使用https_proxy 代理配置
文章链接:http://soscw.com/index.php/essay/103824.html
评论
亲,登录后才可以留言!