1
1rv013c6aiWPGt24 106 天前 via Android
架设代理吧
|
2
NoobNoob030 106 天前 1
|
3
caryqy 106 天前
vim /etc/docker/daemon.json
{ "proxies":{ "http-proxy":"http://127.0.0.1:8889", "https-proxy":"http://127.0.0.1:8889", "no-proxy": "*.cn,*.aliyun.com,*.aliyuncs.com,*.163.com,*.baiduce.com,*.qiniu.com ,*.daocloud.io,127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,100.64.0.0/10" } } 本地开发可以这样配置 |
4
xiaomayi000 106 天前
@NoobNoob030 请问群晖上怎么用这个
|
5
NoobNoob030 106 天前
@xiaomayi000
docker pull nginx:alpine 改成 docker pull docker.cloudimages.asia/nginx:alpine ,docker-compose 同理 |
6
qping 106 天前
centos 上是这么给 docker pull 设代理的
/etc/systemd/system/docker.service.d/http-proxy.conf ``` [Service] Environment="HTTP_PROXY=http://192.168.1.11:8890" Environment="HTTPS_PROXY=http://192.168.1.11:8890" Environment="NO_PROXY=localhost,192.168.*.*" ··· |
7
AirBai2 106 天前
翻墙
|
8
jasonkayzk 106 天前
docker pull 镜像源/alpine:latest
docker tag 镜像源/alpine:latest alpine:latest docker rmi 镜像源/alpine:latest 上面三个改成一个 shell 函数;用起来跟原来一样。 |
9
lifei6671 106 天前
https://github.com/cmliu/CF-Workers-docker.io
白嫖 cloudflare 的 workers ,部署了自己用。 |
10
XiLingHost 106 天前
内网搭一个 nexus ,然后配置几个 docker(proxy)到 docker.io/gcr.io/ghcr.io/quay.io......然后配置一个 docker(group)把这些 repo 聚合起来,在/etc/docker/daemon.json 里配置镜像源
|
11
totoro625 106 天前
@XiLingHost #10 nexus 真的不错,我甚至映射到了公网访问
|
12
mayli 106 天前
docker pull?
|
13
lichen0501 75 天前
@XiLingHost 我试了两个镜像站 proxy ,然后通过 group 访问,都是按照网上操作来的,但是总是报错:Error response from daemon: manifest for docker.yqzh.cloud/nginx:latest not found: manifest unknown: manifest unknown ,不知道哪里出问题了
|
14
XiLingHost 75 天前
@lichen0501 试试 docker.yqzh.cloud/library/nginx:latest
|