Cannot Access qBitTorrent GUI in Gluetun Stack
I am new to Gluetun (and qBitTorrent via Docker) and am really struggling to access the GUI. I've tried everything that is commented out - and in almost every combination conceivable. The qBit logs state that the server is running at https://localhost:8080 no matter what - and no matter what, https://[NAS IP]:18181 loads nothing (I also tried 8080 each time just cause). The Gluetun container is almost verbatim taken from the wiki, but I feel like I am missing something important in my qBit section. Might be more of a qBit problem, but I know someone here has some insight
ervices:
gluetun:
image: qmcgaw/gluetun:latest
container_name: gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
volumes:
- /share/Docker/Glueton:/gluetun
environment:
- VPN_SERVICE_PROVIDER=expressvpn
- OPENVPN_USER=REDACTED
- OPENVPN_PASSWORD=REDACTED
# - FIREWALL_INPUT_PORTS=8080
# - FIREWALL_OUTBOUND_SUBNETS=192.168.0.0/24
restart: unless-stopped
ports:
- 18181:8080
qbittorrent:
image: ghcr.io/hotio/qbittorrent
container_name: qBitTorrent
network_mode: "container:gluetun"
depends_on:
- gluetun
environment:
- PUID=1000
- PGID=1000
- UMASK=002
# - WEBUI_PORT=8080 #also tried 18181
- LIBTORRENT=v1
# - WEBUI_BIND_ADDRESS=0.0.0.0 # also tried statically setting to my NAS IP
# - QBITTORRENT__WEBUI__HOST_HEADER_VALIDATION=false
volumes:
- /share/Docker/qBitTorrent/config:/config
- /share/Docker/qBitTorrent/data:/data
restart: unless-stopped
TIA!