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

32 lines
867 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-07-20 21:43:58 +05:30
labels:
- traefik.enable=true
- traefik.http.routers.syncyomi.rule=Host(`${TRAEFIK_DOMAIN}`)
- traefik.http.routers.syncyomi.entrypoints=https
- traefik.http.routers.syncyomi.tls=true
- traefik.http.routers.syncyomi.tls.certresolver=cloudflare
- traefik.http.services.syncyomi.loadbalancer.server.port=8282
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-20 21:43:58 +05:30
networks:
- frontend
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
2025-07-20 21:43:58 +05:30
networks:
frontend:
external: true