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)
Any help is greatly appreciated, thank you!