Wallos: Open-source, self-hostable personal subscription tracker. Visualize your recurring expenses, manage your budget, and save money.
docker pull bellamy/wallos
docker run -d -p 8282:8282 --name wallos bellamy/wallos:latest
docker compose up -d
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