LinuxServer.io (LSCR)
⚡ Active by Default
The lscr registry module authenticates with LinuxServer.io (lscr.io) 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_LSCR_{registry_name}_TOKEN
Requiredstring
GitHub Personal Access Token (PAT)
WUD_REGISTRY_LSCR_{registry_name}_USERNAME
Requiredstring
GitHub username
🚀 Examples
Authenticate for LSCR Images
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
environment:
- WUD_REGISTRY_LSCR_LOCAL_USERNAME=johndoe
- WUD_REGISTRY_LSCR_LOCAL_TOKEN=ghp_xxxxxxxxxxxxxxxxxxxx
docker run \
-e WUD_REGISTRY_LSCR_LOCAL_USERNAME="johndoe" \
-e WUD_REGISTRY_LSCR_LOCAL_TOKEN="ghp_xxxxxxxxxxxxxxxxxxxx" \
getwud/wud
📖 Setup Guide: Creating a GitHub PAT for LSCR
- Open GitHub Personal Access Tokens Settings.
- Click Generate new token (classic) and select the
read:packagesscope. - Copy the token and set it as
WUD_REGISTRY_LSCR_{registry_name}_TOKEN.