
Actual Budget
Super fast and privacy-focused app for managing your finances.
#finance #Live Demo #Screenshots
Getting Started
- Create a folder and move to the folder
mkdir actual-budget && cd actual-budget
- Create a
docker-compose.yml
file and add the following content:docker-compose.ymlservices: actual_server: image: docker.io/actualbudget/actual-server:latest ports: - '5006:5006' volumes: - actual_data:/data healthcheck: test: ['CMD-SHELL', 'node src/scripts/health-check.js'] interval: 60s timeout: 10s retries: 3 start_period: 20s restart: unless-stopped volumes: actual_data:
- Start the service using docker compose.
docker compose up -d
- Visit http://localhost:5006 to access Actual Budget.