Pull-only registry proxy

GitWarp

快速使用

把当前站点域名加到镜像名前面,然后照常执行 Docker pull。

当前域名/alpine:latest
当前域名/library/nginx:latest
当前域名/ghcr.io/owner/image:tag

Registry 路径

Docker Hub 默认走根路径,其他 registry 保留原始 host。

Docker Hub 当前域名/alpine:latest
GHCR 当前域名/ghcr.io/owner/image:tag
Quay 当前域名/quay.io/prometheus/prometheus:latest
Kubernetes 当前域名/registry.k8s.io/pause:3.9
MCR 当前域名/mcr.microsoft.com/dotnet/runtime:8.0
ECR Public 当前域名/public.ecr.aws/nginx/nginx:latest

Docker Hub Mirror

也可以把当前站点设置成 Docker Hub registry mirror。

{
  "registry-mirrors": ["https://当前域名"]
}