Linode (Akamai) Container Registry
🔐 Setup Required
The linode registry module allows monitoring images hosted on your Linode / Akamai private registry or LKE cluster.
⚙️ Configuration Variables
WUD_REGISTRY_LINODE_{registry_name}_PASSWORD
Optionalstring
Registry password or token
WUD_REGISTRY_LINODE_{registry_name}_URL
Optionalurl
Linode registry URL (e.g. https://registry.mycluster.linode.com)
WUD_REGISTRY_LINODE_{registry_name}_USERNAME
Optionalstring
Registry username
🚀 Examples
Authenticate with Linode-hosted Registry
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
environment:
- WUD_REGISTRY_LINODE_LKE_URL=https://registry.mycluster.linode.com
- WUD_REGISTRY_LINODE_LKE_USERNAME=linodeuser
- WUD_REGISTRY_LINODE_LKE_PASSWORD=secretpassword
docker run \
-e WUD_REGISTRY_LINODE_LKE_URL="https://registry.mycluster.linode.com" \
-e WUD_REGISTRY_LINODE_LKE_USERNAME="linodeuser" \
-e WUD_REGISTRY_LINODE_LKE_PASSWORD="secretpassword" \
getwud/wud