23 lines
507 B
YAML
23 lines
507 B
YAML
services:
|
|
komga:
|
|
image: gotson/komga
|
|
container_name: komga
|
|
volumes:
|
|
- type: bind
|
|
source: /home/docker/komga/config
|
|
target: /config
|
|
- type: bind
|
|
source: /mnt/manga
|
|
target: /data
|
|
- type: bind
|
|
source: /etc/timezone
|
|
target: /etc/timezone
|
|
read_only: true
|
|
ports:
|
|
- 25600:25600
|
|
user: "1000:10000"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=10000
|
|
- JAVA_TOOL_OPTIONS=-Xmx4g
|
|
restart: unless-stopped
|