Sonarr not seeing downloads from Nzbget

Hello,

I’m using Nzbget with Sonarr on docker. My docker-compose YAML file is the following for both applications:

  sonarr:
    image: "linuxserver/sonarr"
    container_name: "sonarr"
    volumes:
      - ${USERDIR}/docker/sonarr:/config
      - ${USERDIR}/Downloads/completed:/downloads
      - ${USERDIR}/MYNAS/SERIES:/tv
      - "/etc/localtime:/etc/localtime:ro"
      - ${USERDIR}/docker/shared:/shared
    ports:
        - "8989:8989"
    restart: always
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}


  nzbget:
    image: "linuxserver/nzbget"
    container_name: "nzbget"
    volumes:
      - ${USERDIR}/docker/nzbget:/config
      - ${USERDIR}/Downloads:/downloads
      - ${USERDIR}/Downloads/incomplete:/incomplete-downloads
      - ${USERDIR}/docker/shared:/shared
    ports:
      - "6789:6789"
    restart: always
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - TZ=${TZ}

Where the environment variables are the following:

PUID=1000
PGID=113
TZ="Europe/Berlin"
USERDIR="/home/myuser"

The permissions are well assigned for 1000:113, but for some reason Sonarr doesn’t see it when Nzbget movies the shows to /downloads/completed/Series/ and have the following error message:

* No files found are eligible for import in /downloads/completed/Series/myshow

I tried to add a remote path mapping on Sonarr webui with several different values, but didn’t work neither. I have this actually (but not working):

Host: http://serverip
Remote Path: /downloads/completed/Series
Local Path: /downloads/Series/

The strange thing is that when running commands on the docker bash, I can see the files on /downloads/Series.

Did I missed anything?

Thanks!

Make sure the mapping for /downloads is exactly the same for both containers

worked like a charm! :slight_smile:

You’re defintively the man :smiley:

I will change this settings for radarr too!

Thanks!