Sonarr & Radarr I even after watching and troubleshooting from similar posts

I am trying to access radarr & sonarr from web UI i installed them with docker-compose here is the .yml file:


version: “3.7”

services:
prowlarr:
container_name: prowlarr
image:
ports:
- “9696:9696”
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /home/marios/docker:/config

sonarr:
container_name: sonarr
image: Package sonarr · GitHub
ports:
- “8888:8989”
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /home/marios/docker:/config
- /home/marios/docker:/data

radarr:
container_name: radarr
image:
ports:
- “7777:7878”
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /home/marios/docker:/config
- /home/marios/docker:/data

bazarr:
container_name: bazarr
image:
ports:
- “6767:6767”
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /home/marios/docker:/config
- /home/marios/docker:/data

jellyfin:
container_name: jellyfin
image:
ports:
- “8096:8096”
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /home/marios/docker:/config
- /home/marios/docker:/data

qbittorrent:
container_name: qbittorrent
image:
ports:
- “8080:8080”
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Etc/UTC
volumes:
- /home/marios/docker:/config
- /home/marios/docker:/data

also when i run docker ps all shown status UP

images are : Package sonarr · GitHub

And which port’s you use to access?

7777 & 8888

Basically you could check availability ports

ss -tulpn | grep LISTEN
marios@marios:~/docker$ ss -tulpn | grep LISTEN
tcp   LISTEN 0      4096      127.0.0.53%lo:53         0.0.0.0:*
tcp   LISTEN 0      128             0.0.0.0:22         0.0.0.0:*
tcp   LISTEN 0      4096            0.0.0.0:8888       0.0.0.0:*
tcp   LISTEN 0      4096            0.0.0.0:8096       0.0.0.0:*
tcp   LISTEN 0      4096            0.0.0.0:9696       0.0.0.0:*
tcp   LISTEN 0      4096            0.0.0.0:8000       0.0.0.0:*
tcp   LISTEN 0      4096            0.0.0.0:7777       0.0.0.0:*
tcp   LISTEN 0      4096            0.0.0.0:9443       0.0.0.0:*
tcp   LISTEN 0      4096          127.0.0.1:34467      0.0.0.0:*
tcp   LISTEN 0      4096            0.0.0.0:6767       0.0.0.0:*
tcp   LISTEN 0      4096            0.0.0.0:8080       0.0.0.0:*
tcp   LISTEN 0      128                [::]:22            [::]:*
tcp   LISTEN 0      4096               [::]:8888          [::]:*
tcp   LISTEN 0      4096               [::]:8096          [::]:*
tcp   LISTEN 0      4096               [::]:9696          [::]:*
tcp   LISTEN 0      4096               [::]:8000          [::]:*
tcp   LISTEN 0      4096               [::]:7777          [::]:*
tcp   LISTEN 0      4096               [::]:9443          [::]:*
tcp   LISTEN 0      4096               [::]:6767          [::]:*
tcp   LISTEN 0      4096               [::]:8080          [::]:*
marios@marios:~/docker$

Ports are there. Maybe you contact Docker image provider. Basically they build the image and might know what the issue is.

it appears after re-installing them with different file patha (jellyfin /docker sonarr and radarr in /downloads) its working fine but now when i dowload something in tv-shows from sonarr it downloads it and says its in root folder and it dosent redirect to the tv-shows path so it can ve found in jellyfin.

Better to ask container owner on what the issue could be.