-
-
Notifications
You must be signed in to change notification settings - Fork 419
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
32 lines (32 loc) · 1.3 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
32 lines (32 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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