1、配置Firefox的代理 (只配置域名或者ip,前面不加http://)
2、为容器中的Git配置代理
git config --global http.proxy 'http://qingteng:8080'
3、Git下载时忽略证书校验
env GIT_SSL_NO_VERIFY=true git clone https://github.com/nginx/nginx.git
4、docker的host网络模式在Windows上不适用,配置不起效果,使用默认的bridge模式。
5、在Windows上运行docker容器中配置全局代理基本没用。例如下面这样,Linux上运行可以试试
vi /etc/profile/profile.d/proxy.sh
http_proxy="http://qingteng:8080"
source /etc/profile/profile.d/proxy.sh
6、apt包管理器配置代理
vi /etc/apt/apt.conf.d/80proxy
Acquire::http::proxy "http://qingteng:8080"
7、apt忽略证书校验
apt --allow-unauthenticated upgrade