21 lines
435 B
YAML
Executable File
21 lines
435 B
YAML
Executable File
---
|
|
version: '3.3'
|
|
services:
|
|
komga:
|
|
image: gotson/komga
|
|
container_name: komga
|
|
volumes:
|
|
- type: bind
|
|
source: ./config
|
|
target: /config
|
|
- type: bind
|
|
source: /Comics
|
|
target: /books
|
|
- type: bind
|
|
source: /etc/timezone
|
|
target: /etc/timezone
|
|
read_only: true
|
|
ports:
|
|
- 8888:8080
|
|
user: "1000:100"
|
|
restart: unless-stopped |