I followed this guide to setting up qBittorrent to use a Gluetun VPN through Dockge containers, but all of my torrented files are going to /mnt/.ix-apps/docker
instead of the encrypted datasets I specified. From what I can tell I set the correct values for volumes
, so I’m not sure why the torrents aren’t being sent to my dataset.
Here’s my compose file for qBittorrent:
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=0
- PGID=0
- TZ=GMT+1
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- /mnt/Main/configs/qbittorrent/appdata:/config
- /mnt/Main/configs/qbittorrent/downloads:/mnt/Main/configs/qbittorrent/downloads
restart: unless-stopped
network_mode: container:gluetun
networks:
10.0.50.0/24: {}
That’s pretty much just what the tutorial said to do. I also tried changing volumes
to just /mnt/Main/configs/qbittorrent:/config
, but no changes. It puts a few json files in the directory labeled :/config
no matter what, but the torrents are still in .ix-apps
.