Skip to main content

Wallos

Wallos

Information

Wallos is a self hosted subscription manager. It can tell you how much you are spending on subscriptions.

  • Just Wallos Commands
TypeCommand
Startdocker compose up wallos -d
Shutdowndocker compose down wallos
wallos
  • Once started, wallos should be hit from this url:
URL
Non-SSL (Web UI)http://localhost:8282
Imagebellamy/wallos(Docker Hub)

Wallos Example Docker Compose

services:
wallos:
container_name: ${WALLOS_CONTAINER_NAME:-wallos}
image: bellamy/wallos:latest
ports:
- "${WALLOS_HOST_PORT:-8282}:80/tcp"
env_file:
- ./.env
- ../../.env
environment:
TZ: ${TIMEZONE}
# Volumes store your data between container upgrades
volumes:
- "${DEFAULT_CONTAINER_DATA_LOCATION}/Wallos/db:/var/www/html/db"
- "${DEFAULT_CONTAINER_DATA_LOCATION}/Wallos/logos:/var/www/html/images/uploads/logos"
restart: unless-stopped
profiles:
- all
- wallos

Wallos Example .env file

WALLOS_CONTAINER_NAME="wallos"
WALLOS_HOST_PORT=8282