Gitea Container Registry
⚡ Active by Default
The gitea registry module connects to self-hosted or public Gitea container registries.
Zero-Config for Public Images
Public packages work out of the box with zero configuration. Configure this module to monitor private repositories or avoid anonymous rate limits.
⚙️ Configuration Variables
WUD_REGISTRY_GITEA_{registry_name}_LOGIN
Requiredstring
Gitea username
WUD_REGISTRY_GITEA_{registry_name}_PASSWORD
Requiredstring
Gitea password or Personal Access Token (PAT)
WUD_REGISTRY_GITEA_{registry_name}_URL
Requiredurl
Gitea instance base URL (e.g. https://gitea.example.com)
WUD_REGISTRY_GITEA_{registry_name}_AUTH
Optionalstring
Direct Base64-encoded username:password string
🚀 Examples
Authenticate with a Self-Hosted Gitea Instance
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
environment:
- WUD_REGISTRY_GITEA_LOCAL_URL=https://gitea.example.com
- WUD_REGISTRY_GITEA_LOCAL_LOGIN=johndoe
- WUD_REGISTRY_GITEA_LOCAL_PASSWORD=secret_token_12345
docker run \
-e WUD_REGISTRY_GITEA_LOCAL_URL="https://gitea.example.com" \
-e WUD_REGISTRY_GITEA_LOCAL_LOGIN="johndoe" \
-e WUD_REGISTRY_GITEA_LOCAL_PASSWORD="secret_token_12345" \
getwud/wud