Docker mod that installs VueTorrent to the LinuxServer.io qBittorrent images.
This mod was inspired by arafatamim/linuxserver-io-mod-vuetorrent, but it takes a different approach. While arafatamim's mod relies on an installation script, my mod streamlines the process by packaging VueTorrent directly into the container image. As a result, the VueTorrent files are automatically downloaded alongside the mod, eliminating the need for an installation script. Additionally, this approach allows you to optionally pin a specific VueTorrent version.
- Add the following environment variable to your qBittorrent deployment (see examples)
DOCKER_MODS=ghcr.io/gabe565/linuxserver-mod-vuetorrent
- Recreate the container
- Go to
Options
>Web UI
- Check
Use alternative Web UI
- Set
Files location
to/vuetorrent
- Scroll down and click
Save
. - Refresh
---
version: "2.1"
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8080
- DOCKER_MODS=ghcr.io/gabe565/linuxserver-mod-vuetorrent
volumes:
- /path/to/appdata/config:/config
- /path/to/downloads:/downloads
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
If you use my qBittorrent Helm chart, see Custom configuration in my chart docs.