在终端中设置环境变量
export http_proxy="http://localhost:port" export https_proxy="http://localhost:port"
取消设置:
unset http_proxy
unset https_proxy
在docker中设置代理,需要在启动时设置--net=host,使得docker共享主机的 network namespace,也就是说:容器可以直接访问主机上所有的网络信息。
docker run -itd --name test --net=host -v local:docker docker:tgz /bin/bash