redocker

A multi-registry Docker pull-through mirror running on Vercel.

Docker Hub — use as a registry mirror

// /etc/docker/daemon.json
{
  "registry-mirrors": ["https://redocker.8908900.xyz"]
}

Public images — pull by prefix

docker pull redocker.8908900.xyz/library/nginx          # Docker Hub (auto library/)
docker pull redocker.8908900.xyz/ghcr.io/cli/cli        # any allowed registry

Private images — log in to a registry subdomain

docker login ghcr.redocker.8908900.xyz -u USER --password-stdin   # paste a read:packages PAT
docker pull  ghcr.redocker.8908900.xyz/owner/private-image:tag