From a48a59a066f4ca2441d556452b4dbd96a70aaf86 Mon Sep 17 00:00:00 2001 From: ponzischeme89 Date: Sat, 17 Jan 2026 23:10:36 +1300 Subject: [PATCH] Add komodo section --- README.md | 44 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 42 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a999c8a..10499b7 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,10 @@ If you’ve ever opened a movie or episode and thought “wait… what was this - Fast Python backend (Flask + aiohttp) - Docker image available through GHCR -## Docker Compose +## Deployment + +
+ Docker Compose Create `data/` and `media/` folders next to the compose file, then run: @@ -43,8 +46,10 @@ Then start it with: ```bash docker compose up -d ``` +
-## Unraid +
+ Unraid Sublogue includes an Unraid template at `unraid-sublogue.xml`. Import it in Unraid's Docker UI, then map: @@ -52,6 +57,41 @@ Sublogue includes an Unraid template at `unraid-sublogue.xml`. Import it in Unra - `/mnt/user/appdata/sublogue/media` -> `/media` Start the container and open `http://:5000`. +
+ +
+ Komodo + +Create a new stack in Komodo and paste a template like this (example format below): + +```yaml +version: "3.9" +services: + shelfarr: + image: ghcr.io/ponzischeme89/sublogue:latest + container_name: sublogue + + ports: + - "5055:5055" + + environment: + - TZ=Pacific/Auckland + - PORT=5055 + + volumes: + - /volume1/Docker/sublogue/data:/data + - /share/subtitles:/audiobooks + + restart: unless-stopped + + networks: + - npm_network + +networks: + npm_network: + external: true +``` +
## Acknowledgements