在終端中設置環境變量docker
export http_proxy="http://localhost:port" export https_proxy="http://localhost:port"
取消設置:bash
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