From 4dcd7aa8fa532d7e328b7f667247213d049537a5 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Fri, 27 Dec 2024 10:17:33 +0100 Subject: [PATCH] Arr-Stack: add qBitTorrent client --- Docker/Docker-Compose/Arr/README.md | 2 ++ Docker/Docker-Compose/Arr/docker-compose.yml | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/Docker/Docker-Compose/Arr/README.md b/Docker/Docker-Compose/Arr/README.md index fb3742d..bf3d3b4 100644 --- a/Docker/Docker-Compose/Arr/README.md +++ b/Docker/Docker-Compose/Arr/README.md @@ -6,12 +6,14 @@ This stack makes it easy to manage big amounts of media. * [Gluetun](https://github.com/qdm12/gluetun) Stack network handler and VPN * [Deluge](https://deluge-torrent.org/) Lightweight BitTorrent client +* [qBitTorrent](https://www.qbittorrent.org/) Feature rich BitTorrent client ## Default UI Ports | Service | Port | |-|:-:| | Deluge | 18112 | +| qBitTorrent | 18998 | ## Configuration diff --git a/Docker/Docker-Compose/Arr/docker-compose.yml b/Docker/Docker-Compose/Arr/docker-compose.yml index 5375717..9562571 100644 --- a/Docker/Docker-Compose/Arr/docker-compose.yml +++ b/Docker/Docker-Compose/Arr/docker-compose.yml @@ -12,6 +12,10 @@ services: - 18388:8388/tcp # Shadowsocks - 18388:8388/udp # Shadowsocks - 18000:8000/tcp # Built-in HTTP control server + # QBittorrent + - 18998:18998 # qBittorrent UI + - 16881:16881 + - 16881:16881/udp - 18112:8112 # deluge environment: - VPN_SERVICE_PROVIDER=${VPN_SERVICE_PROVIDER} @@ -26,6 +30,22 @@ services: - HTTPPROXY_STEALTH=${HTTPPROXY_STEALTH} # Stealth mode means HTTP proxy headers are not added to your requests restart: unless-stopped + qbittorrent: + image: lscr.io/linuxserver/qbittorrent:latest + environment: + - PUID=${PUID} + - PGID=${PGID} + - TZ=${TZ} + - WEBUI_PORT=18998 + - TORRENTING_PORT=16881 + volumes: + - ${ROOT}/qBittorrent/config:/config + - ${MEDIA}/unsorted:/downloads + restart: unless-stopped + network_mode: service:gluetun + depends_on: + - gluetun + deluge: image: lscr.io/linuxserver/deluge restart: unless-stopped