feat: add actual-budget service

This commit is contained in:
Hansen Frenico
2024-12-21 23:59:35 +01:00
parent aae54e8847
commit 153da2628c
2 changed files with 20 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 599 KiB

View File

@@ -0,0 +1,20 @@
# documentation: https://actualbudget.org/docs/install/docker
# slogan: A local-first personal finance app.
# tags: budgeting,actual,finance,budget,money,expenses,income
# logo: svgs/actualbudget.png
# port: 5006
services:
actual_server:
image: "docker.io/actualbudget/actual-server:latest"
restart: unless-stopped
environment:
- SERVICE_FQDN_ACTUAL_5006
- ACTUAL_LOGIN_METHOD=password
volumes:
- "actual-data:/data"
healthcheck:
test: ["CMD", "echo", "ok"]
interval: 5s
timeout: 20s
retries: 10