mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 23:45:11 +01:00
20 lines
602 B
YAML
20 lines
602 B
YAML
---
|
|
version: '3'
|
|
services:
|
|
nestor:
|
|
image: gotson/komga
|
|
container_name: komga
|
|
volumes:
|
|
- ~/opt/appdata/komga:/config
|
|
- /mnt/nas/media/Books/:/books
|
|
- /etc/timezone:/etc/timezone:ro
|
|
ports:
|
|
- 8090:8080
|
|
environment:
|
|
- SPRING_PROFILES_ACTIVE=prod
|
|
- SPRING_DATASOURCE_URL=jdbc:h2:/config/database.h2;DB_CLOSE_DELAY=-1
|
|
- KOMGA_ROOT_FOLDER=/books
|
|
- KOMGA_ROOT_FOLDER_SCAN_CRON=0 0 * * * ? # periodic scan every hour
|
|
- KOMGA_USER_PASSWORD=your-admin-password
|
|
- KOMGA_ADMIN_PASSWORD=your-user-password
|
|
restart: unless-stopped
|