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

28 lines
796 B
YAML
Raw Normal View History

2025-07-14 12:48:15 +05:30
# SyncYomi Configuration - Manga/Comic Reader Sync Service
2025-06-18 22:43:53 +05:30
services:
syncyomi:
2025-07-14 12:48:15 +05:30
# Basic container configuration
2025-06-18 22:43:53 +05:30
container_name: syncyomi
image: ghcr.io/syncyomi/syncyomi:v1.1.4
2025-07-14 12:48:15 +05:30
restart: unless-stopped # Auto-restart on failure
# Application settings
2025-06-18 22:43:53 +05:30
environment:
2025-07-14 12:48:15 +05:30
- TZ=${TZ} # Timezone for proper timestamp handling
# Persistent storage configuration
2025-06-18 22:43:53 +05:30
volumes:
2025-07-14 12:48:15 +05:30
- ${APPDATA_PATH}/syncyomi/config:/config # Configuration files
- ${APPDATA_PATH}/syncyomi/log:/log # Application logs
# Network configuration
2025-06-18 22:43:53 +05:30
ports:
2025-07-14 12:48:15 +05:30
- ${PORT}:8282 # Web interface port
2025-07-16 23:06:20 +05:30
# Health check configuration
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8282"]
interval: 10s
timeout: 10s
retries: 3