Initial commit (I feel unsafe)
This commit is contained in:
26
actual_server-compose_template.yaml
Normal file
26
actual_server-compose_template.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
services:
|
||||
actual:
|
||||
image: ghcr.io/actualbudget/actual
|
||||
container_name: actual
|
||||
pull_policy: always
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 127.0.0.1:${PORT}:5006
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 2048M
|
||||
volumes:
|
||||
- type: bind
|
||||
source: ${VOLUME_PATH}
|
||||
target: /data
|
||||
bind:
|
||||
create_host_path: true
|
||||
user: ${PUID}:${PGID}
|
||||
healthcheck:
|
||||
test: ['CMD-SHELL', 'node src/scripts/health-check.js']
|
||||
interval: 60s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 20s
|
||||
Reference in New Issue
Block a user