 
            qBittorrent - 强大的开源BT、PT下载器

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


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=18080qb
14.3.9的版本适用于绝大部分的bt、pt站点,推荐使用这个版本;如果你想安装最新版本,请修改过容器镜像为:linuxserver/qbittorrent:latest即可。
启动
安装完成后,访问地址为:ip+18080(端口号可自行修改)
默认账户:admin
默认密码:adminadmin
启动后务必修改 默认账户密码!
项目地址
            本文是原创文章,采用 CC BY-NC-ND 4.0 协议,完整转载请注明来自 DockerApps
        
     评论
            
                匿名评论
                隐私政策
            
            
                你无需删除空行,直接评论以获取最佳展示效果
            
         
            
        