From 30012b26fb9386b02b64b2d6da4843f29eb58ce4 Mon Sep 17 00:00:00 2001 From: Nikholas Pcenicni <82239765+nikpcenicni@users.noreply.github.com> Date: Wed, 19 Aug 2026 01:17:05 -0400 Subject: [PATCH] Update profilarr service configuration in compose.yaml for improved setup --- komodo/arr/arrs/compose.yaml | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/komodo/arr/arrs/compose.yaml b/komodo/arr/arrs/compose.yaml index b27b93a..dfcc075 100644 --- a/komodo/arr/arrs/compose.yaml +++ b/komodo/arr/arrs/compose.yaml @@ -137,15 +137,31 @@ services: restart: unless-stopped profilarr: - image: santiagosayshey/profilarr:latest # Use :beta for early access to new features + image: ghcr.io/dictionarry-hub/profilarr:latest container_name: profilarr - ports: - - 6868:6868 - volumes: - - /path/to/your/data:/config # Replace with your actual path - environment: - - TZ=UTC # Set your timezone restart: unless-stopped + ports: + - "6868:6868" + volumes: + - ${CONFIG_PATH}/profilarr:/config + environment: + - PUID=${PUID} + - PGID=${PGID} + - UMASK=022 + - TZ=Canada/Eastern + - PARSER_HOST=parser + - PARSER_PORT=5000 + depends_on: + parser: + condition: service_healthy + + # Optional - only needed for CF/QP testing + parser: + image: ghcr.io/dictionarry-hub/profilarr-parser:latest + container_name: profilarr-parser + restart: unless-stopped + expose: + - "5000" flaresolverr: image: ghcr.io/flaresolverr/flaresolverr:latest