From 8061be84affb99a68ef8cc306c7b90682822b56d Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Mon, 9 Jun 2025 00:58:40 -0300 Subject: [PATCH] Add komga --- komga/docker-compose.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 komga/docker-compose.yml diff --git a/komga/docker-compose.yml b/komga/docker-compose.yml new file mode 100644 index 0000000..0fbf0a4 --- /dev/null +++ b/komga/docker-compose.yml @@ -0,0 +1,22 @@ +services: + komga: + image: gotson/komga + container_name: komga + volumes: + - type: bind + source: /docker/appdata/komga/config + target: /config + - type: bind + source: /docker/appdata/komga/data + target: /data + - type: bind + source: /etc/timezone #alternatively you can use a TZ environment variable, like TZ=Europe/London + target: /etc/timezone + read_only: true + ports: + - 25600:25600 + user: "1000:1000" + # remove the whole environment section if you don't need it + environment: + - JAVA_TOOL_OPTIONS=-Xmx4g + restart: unless-stopped