Sonatype Nexus Repository
🔐 Setup Required
The nexus registry module allows monitoring images from Sonatype Nexus Repository Docker connectors.
⚙️ Configuration Variables
WUD_REGISTRY_NEXUS_{registry_name}_URL
Requiredurl
Nexus repository URL (e.g. https://nexus.mycompany.org:8443)
WUD_REGISTRY_NEXUS_{registry_name}_PASSWORD
Optionalstring
Nexus user password or token
WUD_REGISTRY_NEXUS_{registry_name}_USERNAME
Optionalstring
Nexus username
🚀 Examples
Authenticate with Sonatype Nexus
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
environment:
- WUD_REGISTRY_NEXUS_PRIVATE_URL=https://nexus.mycompany.org:8443
- WUD_REGISTRY_NEXUS_PRIVATE_USERNAME=ci-agent
- WUD_REGISTRY_NEXUS_PRIVATE_PASSWORD=secretpassword123
docker run \
-e WUD_REGISTRY_NEXUS_PRIVATE_URL="https://nexus.mycompany.org:8443" \
-e WUD_REGISTRY_NEXUS_PRIVATE_USERNAME="ci-agent" \
-e WUD_REGISTRY_NEXUS_PRIVATE_PASSWORD="secretpassword123" \
getwud/wud