Open baykalokandemir opened 7 months ago
I'm having the same issue. Any help would be greatly appreciated.
I'm also experiencing this.
I'm also experiencing this.
It's likely an issue with the qbittorrentvpn image. To bypass this, I used a normal version of qbittorrent but created another docker container, running gluetun, to route my traffic through.
Edit: For anyone having the same issue, here is where you can find the gluetun docker build and below is a copy of my docker-compose file with relevant pieces:
services:
gluetun:
image: qmcgaw/gluetun:latest
cap_add:
- NET_ADMIN
volumes:
- /opt/docker/plex/gluetun:/gluetun
environment:
- VPN_SERVICE_PROVIDER=private internet access
- OPENVPN_USER=PIA_USERNAME
- OPENVPN_PASSWORD=PIA_PASSWORD
- SERVER_REGIONS=US East
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
network_mode: "service:gluetun"
restart: unless-stopped
volumes:
- /opt/docker/plex/qbittorrent:/config
- /home/data/downloads:/data/downloads # Change this to your downloads directory
environment:
- PUID=1000 # Change this to your user ID
- PGID=1000 # Change this to your group ID
- TZ=Etc/UTC
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
Hi! As the title suggests, I cant reach the web UI from my local network. The problem persists with or without VPN enabled. Here's my docker-compose.yml
and here is the log:
Any help would be appreciated, I've been going at this for hours. I saw that a lot of people with the same problem managed to fix theirs with the correct LAN_NETWORK and ports but im pretty sure i got mine correctly and haven't made any progress.