Files
Wallos/docker-compose.yaml
Miguel Ribeiro aff3ed06b1 feat: add OIDC_REQUIRE_EMAIL_VERIFIED environment variable and SSRF_ALLOWLIST environment variable
feat: add Arabic localization
feat: add manual logo search box and png prioritization
fix: pin discord notification action to a commit sha
fix: service worker caching stale logo search results and broken images as logos
fix: ai recommendations not handling varied provider responses
fix: deleting orphaned logos not taking into account themed variants
fix: stats page not using themed logo variants
fix: email notification test rejecting non-admin users
fix: notification test/send requests hanging on unreachable hosts
fix: progress bar showing 100% when next payment is more than one cycle away
2026-07-18 23:33:40 +02:00

33 lines
1.3 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"
# OIDC_REQUIRE_EMAIL_VERIFIED: "true"
# Optional SSRF allowlist (overrides the Security Settings allowlist in the Admin UI)
# SSRF_ALLOWLIST: "auth.example.com,192.168.1.100:8123"
# Volumes store your data between container upgrades
volumes:
- './db:/var/www/html/db'
- './logos:/var/www/html/images/uploads/logos'
restart: unless-stopped