Open the server Apps tab
Select your VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.


Privacy-focused local-first personal finance app with envelope budgeting and bank sync
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Actual Budget template in Server Compass to deploy a self-hosted personal budgeting app with SQLite-backed budgeting server on your VPS, then verify the Actual Budget web UI in a browser.
Select your VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find Actual Budget in the Server Compass template catalog.

Choose the Actual Budget template. Server Compass fills the Actual Budget server with persistent local data.

Confirm the app name and compose services. In this run, the app was named actual-budget-demo and used host port 5006.

Review the generated environment values, confirm the port is available, and click Deploy Now.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the Actual Budget image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the Actual Budget app is marked Running with its application URL available.

Open the application URL in a browser. The Actual Budget web UI confirms the site is reachable.

The Actual Budget web UI loaded successfully in a browser.
It deploys Actual Budget with persistent local budget storage.
The tutorial used host port 5006, which maps to the Actual Budget web service on container port 5006.
The tutorial verifies the clean Actual Budget web UI because password setup, budget creation, imports, and security settings depend on the production server.
No. The deployment guide should live on the Actual Budget template detail page and be linked from the reusable template deployment docs page.
Deploy Actual Budget the traditional way with SSH and Docker Compose.
Begin by establishing a secure connection to your server through the terminal.
# Access your VPS
ssh root@YOUR_SERVER_IP
# With SSH key authentication
ssh -i ~/.ssh/your-private-key root@YOUR_SERVER_IPFirst time? Ensure Docker is installed first: curl -fsSL https://get.docker.com | sh
Create a dedicated folder for your application files.
# Create and navigate to project directory
mkdir -p ~/apps/actual-budget
cd ~/apps/actual-budgetCreate the following docker-compose.yml in your project directory:
services:
actual:
image: actualbudget/actual-server:latest
ports:
- "5006:5006"
volumes:
- actual_data:/data
restart: unless-stopped
volumes:
actual_data:
PORTHost port to expose(default: 5006)Run Docker Compose to launch your application.
# Launch the stack
docker compose up -d
# Verify container status
docker compose ps
# Follow the logs
docker compose logs --followConfigure UFW to allow traffic to your application.
# Allow the application port through firewall
sudo ufw allow 5006/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:5006Server Compass makes deploying Actual Budget effortless. Visual setup, one-click deploy, done.
After deploying Actual Budget with Server Compass, complete these steps to finish setup
Open the Actual Budget URL in your browser
Create a password for your server
Create your first budget file
Set up accounts and budget categories
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Actual Budget
Simply download Server Compass, connect to your VPS, and select Actual Budget from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Actual Budget requires a minimum of 256MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Actual Budget backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Actual Budget image will be pulled and deployed with zero downtime.
Actual Budget is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.
Download Server Compass and deploy Actual Budget to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass