ShiftSync/web/docker-compose.yaml

14 lines
360 B
YAML
Raw Normal View History

2025-06-11 02:59:40 +00:00
services:
shiftsync-web:
image: 'docker.io/john4064/shiftsync:latest_web'
environment:
- 'TESTVAR=${COOLIFY_VAR}'
volumes:
- /home/jparkhurst/shiftsync:/shiftsync
ports:
- "5173:5173"
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:5173"]
interval: 10s
timeout: 5s
2025-06-11 03:10:05 +00:00
retries: 4