Skip to content

Container Registries

CodeFloe provides a proxy cache to common container registries, such as Docker Hub and GitHub Container Registry. This prevents rate-limiting during the use of CodeFloe CI.

The proxy cache is available at cr.codefloe.com.

  • docker.io (Docker Hub)
  • ghcr.io (GitHub Container Registry)

Instead of repo/image in your Dockerfile, use cr.codefloe.com/docker.io/<repo>/<image>:<tag>.

For official images like ubuntu and golang which don’t have a visible owner, specify the owner as library:

FROM cr.codefloe.com/docker.io/library/<image>:<tag>

Instead of ghcr.io/owner/image in your Dockerfile, use cr.codefloe.com/ghcr.io/owner/image.

FROM cr.codefloe.com/ghcr.io/<repo>/<image>:<tag>