Remove comments v3

This commit is contained in:
2025-07-19 20:34:39 +05:30
parent 948b0575b9
commit 422a0f6211
9 changed files with 96 additions and 212 deletions

View File

@@ -1,25 +1,15 @@
# SyncYomi Configuration - Manga/Comic Reader Sync Service
services:
syncyomi:
# Basic container configuration
container_name: syncyomi
image: ghcr.io/syncyomi/syncyomi:v1.1.4
restart: unless-stopped # Auto-restart on failure
# Application settings
restart: unless-stopped
environment:
- TZ=${TZ} # Timezone for proper timestamp handling
# Persistent storage configuration
- TZ=${TZ}
volumes:
- ${APPDATA_PATH}/syncyomi/config:/config # Configuration files
- ${APPDATA_PATH}/syncyomi/log:/log # Application logs
# Network configuration
- ${APPDATA_PATH}/syncyomi/config:/config
- ${APPDATA_PATH}/syncyomi/log:/log
ports:
- ${PORT}:8282 # Web interface port
# Health check configuration
- ${PORT}:8282
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8282"]
interval: 10s