docker pull 設置代理

簡介

你在終端設置代理的時候docker pull的時候是不會走代理的,下面是docker pull設置代理的正確方式docker

操做

環境是在centos下,若是沒有新建下面這個文件夾vim

sudo mkdir -p /etc/systemd/system/docker.service.dcentos

以後新建下面這個文件走http代理bash

vim /etc/systemd/system/docker.service.d/http-proxy.conf代理

填入code

[Service]
Environment="HTTP_PROXY=http://proxy.example.com:80/"

編輯下面這個文件走https代理blog

vim /etc/systemd/system/docker.service.d/https-proxy.confget

[Service]
Environment="HTTPS_PROXY=https://proxy.example.com:443/"

以後你使用docker pull的時候就能夠pull gcr.io上的鏡像了博客

詳細能夠看下面io

https://docs.docker.com/config/daemon/systemd/

歡迎關注Bboysoul的博客www.bboysoul.com Have Fun

相關文章
相關標籤/搜索