Arr-Stack: add qBitTorrent client
This commit is contained in:
parent
7fe954ceaf
commit
4dcd7aa8fa
2 changed files with 22 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue