From 242eafb2de06259a63ac9d30970b7bb39afe39ae Mon Sep 17 00:00:00 2001 From: feldjaeger Date: Sat, 11 Apr 2026 16:48:34 +0200 Subject: [PATCH] Remove separate checkrr config files - follow guideline (compose.yaml + .env only) --- checkrr.config.yaml | 37 ------------------------------------- checkrr.yaml | 21 --------------------- 2 files changed, 58 deletions(-) delete mode 100644 checkrr.config.yaml delete mode 100644 checkrr.yaml diff --git a/checkrr.config.yaml b/checkrr.config.yaml deleted file mode 100644 index 1c8247f..0000000 --- a/checkrr.config.yaml +++ /dev/null @@ -1,37 +0,0 @@ ---- -# Checkrr Configuration -# Minimal config for arrapps stack - -checkrr: - checkpath: - - /data/UHD - - /data/FHD - runOnce: false - port: 8585 - host: 0.0.0.0 - -arr: - - service: radarr - name: radarrUHD - url: http://radarrUHD:7878 - apiKey: "${RADARR_UHD_API_KEY}" - process: true - - service: radarr - name: radarrFHD - url: http://radarrFHD:7878 - apiKey: "${RADARR_FHD_API_KEY}" - process: true - - service: sonarr - name: sonarrUHD - url: http://sonarrUHD:8989 - apiKey: "${SONARR_UHD_API_KEY}" - process: true - - service: sonarr - name: sonarrFHD - url: http://sonarrFHD:8989 - apiKey: "${SONARR_FHD_API_KEY}" - process: true - -logging: - level: info - language: en-us diff --git a/checkrr.yaml b/checkrr.yaml deleted file mode 100644 index 95546e1..0000000 --- a/checkrr.yaml +++ /dev/null @@ -1,21 +0,0 @@ ---- -version: "3" - -services: - checkrr: - container_name: checkrr - image: aetaric/checkrr:latest - volumes: - - /app-config/arr/checkrr.yaml:/etc/checkrr.yaml - - /app-config/arr/checkrr.db:/checkrr.db - - data:/data - ports: - - 8585:8585 - restart: on-failure - networks: - - media_network - depends_on: - - radarrUHD - - radarrFHD - - sonarrUHD - - sonarrFHD