From b727a0c7cc2dad1ffb979e2dc3dd645a588a547f Mon Sep 17 00:00:00 2001 From: Gabe Date: Sat, 24 Jan 2026 03:34:30 +0000 Subject: [PATCH] Add Financial_Containers/actual/compose.yaml --- Financial_Containers/actual/compose.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Financial_Containers/actual/compose.yaml diff --git a/Financial_Containers/actual/compose.yaml b/Financial_Containers/actual/compose.yaml new file mode 100644 index 0000000..27fb9c8 --- /dev/null +++ b/Financial_Containers/actual/compose.yaml @@ -0,0 +1,21 @@ +services: + actual_server: + image: docker.io/actualbudget/actual-server:latest + container_name: actual + ports: + - '5006:5006' + environment: + - ACTUAL_UPLOAD_FILE_SYNC_SIZE_LIMIT_MB=20 + - ACTUAL_UPLOAD_SYNC_ENCRYPTED_FILE_SYNC_SIZE_LIMIT_MB=50 + - ACTUAL_UPLOAD_FILE_SIZE_LIMIT_MB=20 + # See all options and more details at https://actualbudget.org/docs/config/ + volumes: + - /srv/docker/actual/actual-data:/data + healthcheck: + # Enable health check for the instance + test: ['CMD-SHELL', 'node src/scripts/health-check.js'] + interval: 60s + timeout: 10s + retries: 3 + start_period: 20s + restart: unless-stopped \ No newline at end of file