Actual Budget logo

Actual Budget

Super fast and privacy-focused app for managing your finances.

#finance #Live Demo #Screenshots

Getting Started

  1. Create a folder and move to the folder
    mkdir actual-budget && cd actual-budget
    
  2. Create a docker-compose.yml file and add the following content:
    docker-compose.yml
    services:
      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:
    
  3. Start the service using docker compose.
    docker compose up -d
    
  4. Visit http://localhost:5006 to access Actual Budget.