16 lines
564 B
YAML
16 lines
564 B
YAML
services:
|
|
# Komga
|
|
komga:
|
|
container_name: ${KOMGA_CONTAINER_NAME:-Komga}
|
|
image: gotson/komga:${KOMGA_TAG:-latest}
|
|
restart: ${RESTART:-unless-stopped}
|
|
healthcheck:
|
|
test: curl -f http://localhost:25600/ || exit 1
|
|
environment:
|
|
TZ: ${TZ:-Europe/Amsterdam}
|
|
ports:
|
|
- ${KOMGA_PORT:-25600}:25600
|
|
volumes:
|
|
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-komga}/${KOMGA_CONTAINER_NAME:-Komga}/config:/config
|
|
- /${SYNOLOGY_VOLUME:-volume1}/docker/${STACK_NAME:-komga}/${KOMGA_CONTAINER_NAME:-Komga}/data:/data
|