▲ 1 r/selfhosted
Gluetun qBittorrent help
Hi all. Im having issues getting Gluetun and qbittorrent working together. I've been trying for hours to get it to work but when get my container running and go to qBittorrent in my web browser it just says Unauthorised in the top left hand corner. No login screen or anything. Trying to run this in Docker on my uGreen nas.
The below is my file details. Would appreciate some help. Literally pulling my hair out.
services:
gluetun:
image: qmcgaw/gluetun
container_name: gluetun
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
environment:
- VPN_SERVICE_PROVIDER=nordvpn
- VPN_TYPE=openvpn
- OPENVPN_USER=my-username
- OPENVPN_PASSWORD=my-password
- SERVER_COUNTRIES=Netherlands
- DNS_UPSTREAM_PLAIN_ADDRESSES=1.1.1.1:53
ports:
- 8092:8085
restart: unless-stopped
qbittorrent:
image: qbittorrentofficial/qbittorrent-nox:latest
container_name: qbittorrent
environment:
- QBT_EULA=accept
- QBT_VERSION=latest
- QBT_WEBUI_PORT=8085
volumes:
- ./config:/config
- /home/xxxxxxx/Apps/Jellyfin/Downloads:/downloads
network_mode: service:gluetun
depends_on:
- gluetun
restart: unless-stopped
u/Garychamp — 1 month ago