mirror of
https://github.com/ellite/Wallos.git
synced 2026-07-31 10:16:03 -04:00
* feat(oidc): add declarative runtime configuration * feat(admin): reflect env-managed oidc settings * docs(oidc): document environment variables * chore: match repo line endings and dedupe compose comment --------- Co-authored-by: Miguel Ribeiro <k.d.mitnick@gmail.com>
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
services:
|
|
wallos:
|
|
container_name: wallos
|
|
image: bellamy/wallos:latest
|
|
ports:
|
|
- "8282:80/tcp"
|
|
environment:
|
|
TZ: 'America/Toronto'
|
|
# Optional OIDC environment variables
|
|
# OIDC_ENABLED: "true"
|
|
# OIDC_PROVIDER_NAME: "Authelia"
|
|
# OIDC_CLIENT_ID: "wallos"
|
|
# OIDC_CLIENT_SECRET: "replace-me"
|
|
# OIDC_CLIENT_SECRET_FILE: "/run/secrets/wallos_oidc_secret"
|
|
# OIDC_ISSUER: "https://auth.example.com"
|
|
# OIDC_AUTH_URL: "https://auth.example.com/oauth2/authorize"
|
|
# OIDC_TOKEN_URL: "https://auth.example.com/oauth2/token"
|
|
# OIDC_USERINFO_URL: "https://auth.example.com/oauth2/userinfo"
|
|
# OIDC_REDIRECT_URL: "https://wallos.example.com/index.php"
|
|
# OIDC_LOGOUT_URL: "https://auth.example.com/logout"
|
|
# OIDC_USER_IDENTIFIER: "sub"
|
|
# OIDC_SCOPES: "openid email profile"
|
|
# OIDC_AUTO_CREATE_USER: "true"
|
|
# OIDC_DISABLE_PASSWORD_LOGIN: "false"
|
|
# Volumes store your data between container upgrades
|
|
volumes:
|
|
- './db:/var/www/html/db'
|
|
- './logos:/var/www/html/images/uploads/logos'
|
|
restart: unless-stopped
|