Gain a complete picture of your financial life with this open-source personal finance application. Please note, this project is archived and is no longer actively maintained by the original creators. However, it remains a fully functional tool that you can self-host for maximum privacy and control over your sensitive financial data. As an open-source project distributed under the AGPLv3 license, developers are free to fork the repository and build upon it. This provides a solid foundation for anyone looking to create a customized personal finance solution or simply manage their money without relying on third-party services.
services:
maybe:
image: ghcr.io/maybe-finance/maybe:latest
restart: unless-stopped
ports:
- "3000:3000"
environment:
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
- DB_HOST=postgres
- POSTGRES_DB=maybe
- POSTGRES_USER=maybe
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
depends_on:
postgres:
condition: service_healthy
volumes:
- ./storage:/rails/storage
postgres:
image: postgres:16
restart: unless-stopped
environment:
- POSTGRES_DB=maybe
- POSTGRES_USER=maybe
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
volumes:
- ./pg-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U maybe"]
interval: 5s
timeout: 5s
retries: 5SECRET_KEY_BASE=your_super_secret_key_base_here_must_be_long
POSTGRES_PASSWORD=your_secure_database_passwordAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago