title: 加速Docker Pull或者docker-compose拉取镜像 - 适用github源
tags: [Docker,docker-compose]
新版原文: https://query.carlzeng.top:3/appsearch?q=加速Docker Pull
版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
date: 2023-12-26 23:15:34
categories: Docker
为github的docker源提速
下载zlib(github上的)非常幸苦,速度极慢
找到了大神的文章:加速docker pull
有什么用
为github的docker源提速,比如:
ghcr.io/zlib-searcher/zlib-searcher:latest
ghcr.io/puzzithinker/zlib-searcher:master
怎么用
- 配置http-proxy.conf
mkdir -p /etc/systemd/system/docker.service.d
vim /etc/systemd/system/docker.service.d/http-proxy.conf
[Service]
Environment="HTTP_PROXY=http://192.168.1.1:7890"
- 配置https-proxy.conf
vim /etc/systemd/system/docker.service.d/https-proxy.conf
[Service]
Environment="HTTPS_PROXY=http://192.168.1.1:7890"
#这个设置是难点,踩坑折腾了半小时左右,一直监控着clash.meta的UI,docker pull过程到底有没有走proxy,设置对了以后,速度果然一下子,嗖.....
- 重启服务
sudo systemctl daemon-reload
sudo systemctl restart docker
- 监控一下是否正常走了设置的代理
相关内容
<iframe frameborder="0" height="500" scrolling="auto" src="https://query.carlzeng.top:3/appsearch?q=docker" style="box-shadow: 0 0 20px -10px" width="100%"></iframe>灵感来源
https://zu1k.com/posts/coding/speedup-docker-pull/#为docker设置代理
假如Docker image的源repository被删除了
You will need to save the Docker image as a tar file:
> docker save -o <path for generated tar file> <image name>
Then copy your image to a new system with regular fi...
......