🐳 Wallos

Wallos: Open-source, self-hostable personal subscription tracker. Visualize your recurring expenses, manage your budget, and save money.

Docker Ready 1 Services Ports: 8282 7,860 stars
1. Pull Image docker pull bellamy/wallos
2. 1-Click Launch Command docker run -d -p 8282:8282 --name wallos bellamy/wallos:latest
3. Compose Deployment docker compose up -d
docker-compose.yaml
Download .yml
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