15 lines
317 B
YAML
15 lines
317 B
YAML
services:
|
|
komga:
|
|
image: ghcr.io/gotson/komga:1.22.0
|
|
container_name: komga
|
|
user: ${UID}:${GID}
|
|
environment:
|
|
- TZ=${TZ}
|
|
- JAVA_TOOL_OPTIONS=-Xmx${RAM_LIMIT}
|
|
volumes:
|
|
- ${CONFIG_PATH}:/config
|
|
- ${DATA_PATH}:/data
|
|
ports:
|
|
- ${PORT}:25600
|
|
restart: unless-stopped
|