Skip to main content

qBitTorrent

Ofiicial Link:
https://www.qbittorrent.org/
Docker HUB Link:
https://hub.docker.com/r/linuxserver/qbittorrent
Ubuntu Torrent Download Link:
https://ubuntu.com/download/desktop

Stack

version: "2.1"
services:
  qbittorrent:
    image: ghcr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    environment:
      - PUID=1000 #change this according to your instance PUID
      - PGID=1000 #change this according to your instance PGID
      - TZ=Asia/Dhaka #change this according to your location
      - WEBUI_PORT=8282
    volumes:
      - /home/docker/qBittorrent:/config #change this according to your instance path
      - /home/polash/Downloads/Torrents:/downloads #change this according to your instance path
    ports:
      - 6881:6881
      - 6881:6881/udp
      - 8282:8282
    restart: unless-stopped


Video