Docker Registry Proxy

1 · Wen Wei Tseng · March 25, 2022, 11:45 a.m.
Caching docker registry can Save time/bandwidth for pulling huge images Avoid docker pull rate limiting (100 pulls per 6 hour).. Using docker-registry-proxy, for example: 1 2 3 4 5 docker run --rm --name docker_registry_proxy -it \ -p 0.0.0.0:3128:3128 -e ENABLE_MANIFEST_CACHE=true \ -v $(pwd)/docker_mirror_cache:/docker_mirror_cache \ -v $(pwd)/docker_mirror_certs:/ca \ rpardini/docker-registry-proxy:0.6.2 And setup the Docker clients to use the proxy...