fix: decluttarr config update addressing logs
This commit is contained in:
parent
48eb8acc65
commit
e37ca23728
2 changed files with 17 additions and 0 deletions
|
|
@ -44,6 +44,7 @@ PGADMIN_PASSWORD=
|
|||
|
||||
SONARR_API_KEY=
|
||||
RADARR_API_KEY=
|
||||
SABNZBD_API_KEY=
|
||||
|
||||
# Decluttarr queue cleanup
|
||||
# Set to True first for dry-run validation, then False to enable cleanup actions.
|
||||
|
|
@ -53,6 +54,7 @@ DECLUTTARR_TIMER=10
|
|||
# Strike threshold before stalled downloads are removed.
|
||||
DECLUTTARR_MAX_STRIKES=3
|
||||
DECLUTTARR_LOG_LEVEL=INFO
|
||||
DECLUTTARR_DETECT_DELETIONS=True
|
||||
|
||||
# Gramps config
|
||||
TREE=
|
||||
|
|
|
|||
|
|
@ -517,8 +517,12 @@ services:
|
|||
UN_LOG_FILE: /config/unpackerr.log
|
||||
UN_SONARR_0_URL: http://sonarr:8989
|
||||
UN_SONARR_0_API_KEY: {{SONARR_API_KEY}}
|
||||
UN_SONARR_0_PATHS_0: /data
|
||||
UN_SONARR_0_PROTOCOLS: torrent,TorrentDownloadProtocol,usenet,UsenetDownloadProtocol
|
||||
UN_RADARR_0_URL: http://radarr:7878
|
||||
UN_RADARR_0_API_KEY: {{RADARR_API_KEY}}
|
||||
UN_RADARR_0_PATHS_0: /data
|
||||
UN_RADARR_0_PROTOCOLS: torrent,TorrentDownloadProtocol,usenet,UsenetDownloadProtocol
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- {{DOCKERCONFDIR}}/unpackerr:/config
|
||||
|
|
@ -567,12 +571,23 @@ services:
|
|||
REMOVE_ORPHANS: "True"
|
||||
REMOVE_STALLED: |
|
||||
max_strikes: {{DECLUTTARR_MAX_STRIKES:-3}}
|
||||
DETECT_DELETIONS: {{DECLUTTARR_DETECT_DELETIONS:-True}}
|
||||
SONARR: >
|
||||
- base_url: "http://sonarr:8989"
|
||||
api_key: "{{SONARR_API_KEY}}"
|
||||
RADARR: >
|
||||
- base_url: "http://radarr:7878"
|
||||
api_key: "{{RADARR_API_KEY}}"
|
||||
QBITTORRENT: >
|
||||
- base_url: "http://gluetun:8080"
|
||||
name: "qBittorrent"
|
||||
SABNZBD: >
|
||||
- base_url: "http://sabnzbd:8282"
|
||||
api_key: "{{SABNZBD_API_KEY:-}}"
|
||||
name: "SABnzbd"
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- {{DOCKERSTORAGEDIR}}:/data
|
||||
depends_on:
|
||||
sonarr:
|
||||
condition: service_healthy
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue