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
- Add registry credentials to Thevenin
- Deploy apps using private images
- Thevenin pulls images automatically
Image format
registry.example.com/username/image:tag
Examples:
docker.io/mycompany/app:v1.0ghcr.io/username/api:latestregistry.gitlab.com/user/project/worker:v2