Unable to connect to rutorrent webgui

Hello there!

Any help is greatly appreciated, I’ve been at this for multiple hours now and haven’t had much luck sadly.

I’ve been attempting to follow this guide on setting up ruTorrent using Docker but while it starts normally (and sudo docker logs -f rutorrent shows no errors ) I cannot connect to 192.168.0.108

This is what I edited the docker script that creates it:

sudo docker create --name=rutorrent6 \
--restart=always \
-v /home/daniel/rutorrent/config:/config \
-v /home/daniel/rutorrent/downloads:/downloads \
-e PGID=1000 -e PUID=1000 \
-e TZ=Europe/London \
-p 80:80 \
-p 5000:5000 \
-p 51413:51413 \
-p 6881:6881/udp \
linuxserver/rutorrent

I do not believe my ID is the issue:

[daniel@daniel-pc ~]$ id
uid=1000(daniel) gid=1000(daniel) groups=1000(daniel),3(sys),90(network),98(power),108(vboxusers),955(sambashare),957(libvirt),991(lp),993(input),998(wheel)

Not sure what to make of this:

[daniel@daniel-pc ~]$ sudo netstat -tulpn | grep LISTEN tcp 0 0 0.0.0.0:445 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:6463 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:2015 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:1025 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:139 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:1042 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:5939 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:1143 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN -
tcp6 0 0 :::445 :::* LISTEN -
tcp6 0 0 :::5000 :::* LISTEN -
tcp6 0 0 :::139 :::* LISTEN -
tcp6 0 0 :::80 :::* LISTEN -
tcp6 0 0 :::1716 :::* LISTEN -
tcp6 0 0 :::51413 :::* LISTEN -
tcp6 0 0 ::1:631 :::* LISTEN -

Any help is greatly appreciated, thank you!

This is probably not the IP address of your Docker host. Just try with localhost if you are on the same machine.