QBittorrent
# 说明
BT,PT下载工具
# 搭建
- 命令行
docker run -d --name=qbittorrent --network=host \
-e PUID=0 -e PGID=0 -e WEBUI_PORT=8081 \
-v /mnt/disk/docker/qbittorrent/config:/config \
-v /mnt/down/download:/downloads \
--restart always linuxserver/qbittorrent:4.4.5
docker-compose.yml
文件
version: "3"
services:
qbittorrent:
image: linuxserver/qbittorrent:4.4.5
restart: always
network_mode: host
container_name: qbittorrent
volumes:
- ./config:/config
- /mnt/down/download:/downloads
environment:
- UMASK=000
- PUID=0
- PGID=0
- WEBUI_PORT=8081
上次更新: 2025/03/22, 03:52:10