-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactual-compose.yml
executable file
·26 lines (25 loc) · 1.11 KB
/
actual-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -------------------------------------------------------------------------------------
# Actual is a self-hosted finance management service that allows tracking your finances
# and communicating with different financial institutions through 'SimpleFIN Bridge'.
# The setup below is painfully simple on a NAS, especially in my case; you can use env
# vars to configure the web availability but this is handled for me instead by the NAS
# built-in reverse proxy. See all options and more details at the below link.
# - https://actualbudget.org/docs/install/docker/
# - https://github.com/actualbudget/actual-server/blob/master/docker-compose.yml
# -------------------------------------------------------------------------------------
services:
actual_server:
image: docker.io/actualbudget/actual-server:latest
container_name: actual
ports:
- 5006:5006
volumes:
- /volume1/docker/actual:/data
healthcheck:
test: node /data/actual_healthcheck.js || exit 1
interval: 5m00s
timeout: 10s
retries: 2
start_period: 60s
network_mode: synobridge
restart: unless-stopped