21 lines
630 B
YAML
21 lines
630 B
YAML
# 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
|
|
environment:
|
|
- TZ=${TZ} # Timezone for proper timestamp handling
|
|
|
|
# Persistent storage configuration
|
|
volumes:
|
|
- ${APPDATA_PATH}/syncyomi/config:/config # Configuration files
|
|
- ${APPDATA_PATH}/syncyomi/log:/log # Application logs
|
|
|
|
# Network configuration
|
|
ports:
|
|
- ${PORT}:8282 # Web interface port
|