What Is a Pull-Through Cache?
A pull-through cache is a registry mode that proxies requests to an upstream registry, caching each image the first time it is pulled and serving subsequent pulls from the local copy. Unlike a fully replicated mirror, it only stores what has actually been requested. It transparently reduces repeat pulls of the same image.
Why it matters
In CI, where many jobs pull the same base images, a pull-through cache eliminates redundant downloads and dodges upstream rate limits. Latchkey managed runners can pair this with their dependency and Docker layer caching to cut build setup time.
Related guides
What Is a Registry Mirror?A registry mirror is a local copy of an upstream container registry that serves image pulls faster and reduce…
What Is an Image Pull Secret?An image pull secret holds registry credentials a node uses to authenticate and download container images fro…
What Is a Content Trust Policy?A content trust policy requires container images to be cryptographically signed and verified before they may…