Skip to main content

Container Registries

Connect your private Docker registries to deploy custom images.

What is it?

A container registry stores your Docker images. Public images from Docker Hub work by default. Private registries need credentials.

Supported Registries

Thevenin works with any container registry. This includes:

  • Public registries (Docker Hub, GitHub, GitLab)
  • Self-hosted registries (Harbor, Docker Registry, etc.)
  • Cloud provider registries (AWS ECR, Google GCR, Azure ACR)
  • Any standard Docker-compatible registry

Simply provide the registry URL, username, and access token. Need help? Contact support.

Why use private registries?

  • Deploy your own applications
  • Keep code private
  • Use custom images

How it works

  1. Add registry credentials to Thevenin
  2. Deploy apps using private images
  3. Thevenin pulls images automatically

Image format

registry.example.com/username/image:tag

Examples:

  • docker.io/mycompany/app:v1.0
  • ghcr.io/username/api:latest
  • registry.gitlab.com/user/project/worker:v2

Next Steps