Files
docker-compose/syncyomi/docker-compose.yml
T

19 lines
447 B
YAML
Raw Normal View History

2025-06-18 22:43:53 +05:30
services:
syncyomi:
container_name: syncyomi
image: ghcr.io/syncyomi/syncyomi:v1.1.4
2025-07-19 20:34:39 +05:30
restart: unless-stopped
2025-06-18 22:43:53 +05:30
environment:
2025-07-19 20:34:39 +05:30
- TZ=${TZ}
2025-06-18 22:43:53 +05:30
volumes:
2025-07-19 20:34:39 +05:30
- ${APPDATA_PATH}/syncyomi/config:/config
- ${APPDATA_PATH}/syncyomi/log:/log
2025-06-18 22:43:53 +05:30
ports:
2025-07-19 20:34:39 +05:30
- ${PORT}:8282
2025-07-16 23:06:20 +05:30
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8282"]
interval: 10s
timeout: 5s
2025-07-16 23:06:20 +05:30
retries: 3
start_period: 10s