Example docker-compose.yml
services:
actual_server:
container_name: actual
image: docker.io/actualbudget/actual-server:latest
restart: unless-stopped
volumes:
- ./actual-data:/data
healthcheck:
test: ["CMD-SHELL", "node src/scripts/health-check.js"]
interval: 60s
timeout: 10s
retries: 3
start_period: 20s