linuxserver-mod-vuetorrent icon indicating copy to clipboard operation
linuxserver-mod-vuetorrent copied to clipboard

Docker mod that installs VueTorrent to the LinuxServer.io qBittorrent images

LinuxServer.io VueTorrent Mod

Version Build

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.

Installation

  1. Add the following environment variable to your qBittorrent deployment (see examples)
    DOCKER_MODS=ghcr.io/gabe565/linuxserver-mod-vuetorrent
    
  2. Recreate the container
  3. Go to Options > Web UI
  4. Check Use alternative Web UI
  5. Set Files location to /vuetorrent
  6. Scroll down and click Save.
  7. Refresh

Examples

docker-compose

---
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

Kubernetes Helm Chart

If you use my qBittorrent Helm chart, see Custom configuration in my chart docs.