docker配置代理訪問

問題:docker

  在一些內部系統中,一些電腦沒法直接訪問外網,只能經過代理服務器上網,當使用代理服務器上網時,正常的設置,不能訪問到docker hub。服務器

解決,配置docker代理:spa

  Ubuntu 14.04 : 修改 /etc/default/docker 文件,添加http、https的代理代理

            export http_proxy="http://ip:port/" rest

          export https_proxy="https://ip:port/"token

          重啓docker服務,sudo service docker restartip

  Ubuntu 16.04+:get

        建立文件夾/etc/systemd/system/docker.service.dstring

        建立文件 /etc/systemd/system/docker.service.d/http-proxy.confclass

        添加行:

            [Service] 
            Environment="HTTP_PROXY=http://ip:port/"
            Environment="HTTPS_PROXY=https://ip:port/"

        重啓docker

            sudo systemctl daemon-reload 

            sudo systemctl restart docker

相關文章
相關標籤/搜索