Page 1 of 1

Web UI shows downloads as "stalled" after docker installation

Posted: Wed Jan 15, 2020 2:23 am
by annabaker
I installed qbittorrent via a docker container using the following command:

sudo docker create \
--name=qbittorrent \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/London \
-e UMASK_SET=022 \
-e WEBUI_PORT=8080 \
-p 6881:6881 \
-p 6881:6881/udp \
-p 8080:8080 \
-v /opt/appdata/qbittorrent:/config \
-v /home/fritz/Downloads:/downloads \
--restart unless-stopped \
linuxserver/qbittorrent

I added a torrent using a magnet link, and the download shows as "stalled." Are there additional configurations I need to do to get this up and running from within a container?
Selection_021.png
Selection_021.png (37.06 KiB) Viewed 2107 times

Re: Web UI shows downloads as "stalled" after docker installation

Posted: Sat Feb 08, 2020 7:46 pm
by Peter
Well, this container expects a port forward of 6881 and since it's a container I don't think it can use UPnP to forward. So you have to open that port / forward that port. And then it'll work just fine.

Keep in mind Docker doesn't give a .. flip about "ufw" for example, so that won't be the issue.