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

31 lines
803 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:
2025-07-26 18:31:07 +05:30
- traefik-instance=${TRAEFIK_INSTANCE}
2025-07-20 21:43:58 +05:30
- traefik.enable=true
- traefik.http.routers.syncyomi.rule=Host(`${TRAEFIK_DOMAIN}`)
2025-07-27 20:56:44 +05:30
- traefik.http.routers.syncyomi.entrypoints=websecure
2025-07-20 21:43:58 +05:30
- 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