ManiMatter / decluttarr

Watches radarr, sonarr, lidarr, readarr and whisparr download queues and removes downloads if they become stalled or no longer needed.
GNU General Public License v3.0
99 stars 15 forks source link

TypeError #76

Closed Shane091490 closed 2 months ago

Shane091490 commented 2 months ago

Hi again,

Still having issue with trying to get decluttarr to run with sonarr. I submitted this before but I was in the process of moving and had to shutdown my server and couldn't get back with you. I tried pulling a new image but still getting the same error.

Still no change, still getting same error...

TypeError: unsupported operand type(s) for +: 'dict' and 'dict' TypeError: unsupported operand type(s) for +: 'dict' and 'dict' TypeError: unsupported operand type(s) for +: 'dict' and 'dict'

Using the below docker compose:

version: "3.3" services: sonarr-decluttarr: image: ghcr.io/manimatter/decluttarr:dev container_name: sonarr-decluttarr restart: always environment:

ManiMatter commented 2 months ago

Delete all decluttarr images and containers that you may have already

then pull latest

im 99% sure it will then run

let me know, cheers

Shane091490 commented 2 months ago

After clearing out the old images and pulling new image it started working.

Thanks.

ManiMatter commented 2 months ago

Great! If you dont already have it, you may be interested in a watchtower, which does automated upgrades to your containers.

here's my config, just for your reference in case interested.

# WatchTower - Automatic Docker Container Updates
 watchtower:
   <<: *common-keys-core
   image: containrrr/watchtower:latest
   container_name: watchtower
   volumes:
     - /var/run/docker.sock:/var/run/docker.sock 
   environment:
     WATCHTOWER_CLEANUP: "true"
     WATCHTOWER_REMOVE_VOLUMES: "true"
     WATCHTOWER_INCLUDE_STOPPED: "true"
     WATCHTOWER_NO_STARTUP_MESSAGE: "false"
     WATCHTOWER_SCHEDULE: "0 26 12 * * *" # Everyday at 12:30
     DOCKER_API_VERSION: "1.40"
     <<: *default-tz-puid-pgid