deploy qbittorrent via docker

Intro

使用docker部署qbittorrent

Compose

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: "3.3"

services:
qbittorrent:
image: linuxserver/qbittorrent
container_name: qbittorrent
environment:
- PUID=0
- PGID=0
- TZ=Asia/Shanghai
- WEBUI_PORT=10004
volumes:
- ./config:/config
- ./downloads:/downloads
ports:
- 65535:65535
- 65535:65535/udp
- 10004:10004