Wallos is a self-hosted application for managing and tracking subscriptions. It helps users monitor recurring payments, renewal dates and associated costs in a centralized dashboard. With calendar integration, you can visualize upcoming billing cycles and receive reminders. The app supports multiple currencies and customizable categories for better budgeting insights. It’s ideal for keeping control over digital service subscriptions and avoiding unexpected charges.

Setup

docker-compose.yaml

version: '3.3'

networks:
  docker_net:
    external: true

volumes:
  db:
  logos:

services:
  wallos:
    image: bellamy/wallos:latest
    container_name: wallos
    restart: unless-stopped
    ports:
      - 8282:80
    environment:
      TZ: 'Europe/Vienna'
    volumes:
      - db:/var/www/html/db
      - logos:/var/www/html/images/uploads/logos
    networks:
      - docker_net

Sources