Self-host Firefly III
Personal financedeployed & timed by usprices checked · Jul 2026
A powerful self-hosted personal finance manager built on double-entry accounting — budgets, rules, reports, and bank import. Serious money management, privately.
YNAB / yr$180
Self-hosted / yr~$55
You keep$125/yr
Key facts
CategoryPersonal finance
LicenseAGPL-3.0
StackPHP, Laravel
Min RAM512 MB
Dockeryes
Difficulty
What you need
- Any VPS with at least 512 MB of RAM
- A domain you control — most self-hosted setups need HTTPS in front of them
- About an afternoon — budget time for troubleshooting
Install with Docker Compose
Save this as compose.yml and run docker compose up -d:
# Firefly III + MariaDB (set APP_KEY to 32 random chars)
services:
app:
image: fireflyiii/core:latest
ports: ["8080:8080"]
environment: { DB_CONNECTION: mysql, DB_HOST: db, DB_DATABASE: firefly, DB_USERNAME: firefly, DB_PASSWORD: secret }
db: { image: mariadb:11 }
# docker compose up -d → http://SERVER_IP:8080