mirror of
https://github.com/gotson/komga.git
synced 2026-05-05 11:01:57 +02:00
sample docker-compose.yml
This commit is contained in:
parent
a188cf9598
commit
733c0eea4a
1 changed files with 19 additions and 0 deletions
19
doc/docker-compose.yml
Normal file
19
doc/docker-compose.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
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_USER_PASSWORD=your-admin-password
|
||||
- KOMGA_ADMIN_PASSWORD=your-user-password
|
||||
restart: unless-stopped
|
||||
Loading…
Reference in a new issue