Cannot connect to qbittorrent with docker

Sonarr version (exact version): 3.0.9.1549
Mono version (if Sonarr is not running on Windows):6.12.0.182
OS: docker
Debug logs:
Description of issue:

I have been a user of sonarr on a qnap nas for some time, but this time when I tried to setup it in docker I met some problems really confusing. Sonarr couldn’t connect to qbittorrent.

I used docker-compose to setup sonarr and qbittorrent 4.3.9, because I heard that 4.4.0 and above are not supported by sonarr.

the docker compose is showed below.

sonarr

version: “2.1”
services:
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Shanghai
volumes:
- /share/Container/sonarr/config:/config
- /share/downloads:/downloads
ports:
- 8989:8989
restart: unless-stopped

qbittorrent

version: “2.1”
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:14.3.9
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Shanghai
- WEBUI_PORT=6363
volumes:
- /share/Container/qbittorrent/config:/config
- /share/downloads:/downloads
ports:
- 6363:6363
- 6881:6881
- 6881:6881/udp
restart: unless-stopped

I don’t see any problem here. I entered qb successfully on 192.168.1.199:6363 with default username and password (admin/adminadmin). I entered sonarr with host:192.168.1.199, port:6363, username and password. However, I couldn’t connect to qb.

Where is the problem here? Please help me, thank you.

I temporarily fixed the problem by adding a proxy (I used it to deal with internet block), but if I cancelled the proxy, the problem will happen again.

FYI this is not really a sonarr problem, and more of a docker problem. That said, there should be enough information between the following to get things working for you:

https://wiki.servarr.com/sonarr/installation#docker

https://wiki.servarr.com/docker-guide

https://trash-guides.info/Hardlinks/How-to-setup-for/Docker/

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.