docker 使用 http https socks 代理的设置方法
os: centos7
docker:19.03.5
方式一 修改文件
修改文件: /usr/lib/systemd/system/docker.service
添加:
[Service]
Environment="ALL_PROXY=socks5://192.168.3.6:1080" # socks 代理
如果是https 代理(http 代理将https 替换为http即可)
Environment="HTTPS_PROXY=https://[proxy-addr]:[proxy-port]/"
方式二 shell 模式下
$ export ALL_PROXY=socks5://localhost:port
$ docker pull image
0顶
0 踩
共 0 条评论