qBittorrent

Link to Access App

Link to Download App

qBittorrent is a cross-platform free and open-source BitTorrent client written in native C++. It relies on Boost, Qt 6 toolkit and the libtorrent-rasterbar library (for the torrent back-end), with an optional search engine written in Python.

qBittorrent is hosted on Fettuccine, as a docker containe

https://github.com/trentnbauer/agg/blob/205cfc374516886a137f2f0b66dca9c87fa0f740/docker-compose/qbittorrent.yml
version: "3"

services:
  app:
    image: emmercm/qbittorrent:4.6-alpine
    restart: unless-stopped
    dns:
      - 1.1.1.1
      - 8.8.8.8
    environment:
      - TZ=$TZ
    ports:
      - $WEBPORT:8080
      - 6881:6881/tcp #Torrent Traffic
      - 6881:6881/udp #Torrent Traffic
    volumes:
      - config:/config
      - data:/data
      - $DOWNLOADS:/volume1/downloads
  
  #A better torrent fronten


      
       
volumes:
  config:
  data:

Port

Purpose

8080

WebUI

Host Volume

Container Volume

Purpose

/volume1/downloads

/volume1/downloads

Downloading directly

qbittorrent_config

/config

config files

qbittorent_data

/data

logs, backups

Last updated

Was this helpful?