add: add docker compose stacks

This commit is contained in:
2026-01-16 05:50:15 +00:00
commit d542622d00
18 changed files with 583 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
services:
actual_server:
image: actualbudget/actual-server:latest
container_name: actualbudget
security_opt:
- no-new-privileges:true
healthcheck:
test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/5006' || exit 1
interval: 10s
timeout: 5s
retries: 3
start_period: 90s
ports:
- 8002:5006
volumes:
- /data/docker/actualbudget:/data:rw
restart: on-failure:5