qBittorrent-2.png

介绍

qBittorrent 是一款轻量级的 BitTorrent 客户端,支持 Linux 及其他操作系统。它不仅简单易用,界面美观,而且功能强大。如今,它被视为其他 BitTorrent 软件的优秀替代选择。

截图

qBittorrent-1.png

Docker Run

docker run -d \
  --name=qbittorrent \
  --network=host \
  --restart=unless-stopped \
  -v $(pwd)/config:/config \
  -v $(pwd)/downloads:/downloads \
  -e TZ=Asia/Shanghai \
  -e WEBUI_PORT=18080 \
  linuxserver/qbittorrent:14.3.9

自行修改 /config/downloads 的路径,确保路径正确存在。

Docker Compose

version: "3"
services:
  qbittorrent:
    image: linuxserver/qbittorrent:14.3.9
    container_name: qbittorrent
    network_mode: host
    restart: unless-stopped
    volumes:
      - ./config:/config
      - ./downloads:/downloads
    environment:
      - TZ=Asia/Shanghai
      - WEBUI_PORT=18080

qb 14.3.9 的版本适用于绝大部分的bt、pt站点,推荐使用这个版本;如果你想安装最新版本,请修改过容器镜像为:linuxserver/qbittorrent:latest 即可。

启动

安装完成后,访问地址为:ip+18080(端口号可自行修改)

默认账户:admin

默认密码:adminadmin

启动后务必修改 默认账户密码!

项目地址

https://www.qbittorrent.org

https://github.com/linuxserver/docker-qbittorrent