From cee845b14c27ed236d31a4e9899ca39bef4cbe76 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Thu, 26 Feb 2026 16:48:09 -0600 Subject: [PATCH] Add dispatcharr --- starr/compose.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/starr/compose.yaml b/starr/compose.yaml index 2a31bb6..b3649a4 100644 --- a/starr/compose.yaml +++ b/starr/compose.yaml @@ -7,6 +7,7 @@ volumes: notifiarr_data: seerr_data: syncthing_data: + dispatcharr_data: services: jellyfin: @@ -116,3 +117,17 @@ services: - "22000:22000/tcp" - "22000:22000/udp" - "21027:21027/udp" + + dispatcharr: + image: ghcr.io/dispatcharr/dispatcharr:latest + restart: unless-stopped + container_name: dispatcharr + ports: + - "9191:9191" + volumes: + - dispatcharr_data:/data + environment: + - DISPATCHARR_ENV=aio + - REDIS_HOST=localhost + - CELERY_BROKER_URL=redis://localhost:6379/0 + - DISPATCHARR_LOG_LEVEL=info