18 lines
399 B
YAML
18 lines
399 B
YAML
services:
|
|
komga-bot:
|
|
build: .
|
|
container_name: komga-telegram-bot
|
|
restart: unless-stopped
|
|
environment:
|
|
# Filesystem settings
|
|
- BASE_DIR=/data
|
|
- DEFAULT_SUBDIR=books
|
|
# Telegram token and allowed IDs
|
|
- TELEGRAM_TOKEN=
|
|
- USER_IDS=
|
|
# For komga rescan:
|
|
- KOMGA_USER=
|
|
- KOMGA_PASS=
|
|
- KOMGA_URL=
|
|
volumes:
|
|
- ./data:/data |