跳至主要内容

qBittorrent BitTorrent 伺服器

qBittorrent 是一套開源的 BitTorrent 下載工具,這裡用 Docker 架設其網頁介面版本。

docker-compose.yml

docker-compose.yml
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Asia/Taipei
- WEBUI_PORT={WEBUI_PORT}
- TORRENTING_PORT={TORRENTING_PORT}
volumes:
- /{映射資料夾位置}/qbittorrent/config:/config
- /{映射資料夾位置}/qbittorrent/downloads:/downloads
ports:
- {WEBUI_PORT}:{WEBUI_PORT}
- {TORRENTING_PORT}:{TORRENTING_PORT}
- {TORRENTING_PORT}:{TORRENTING_PORT}/udp
restart: unless-stopped
參數用途
WEBUI_PORT網頁介面的 PORT
TORRENTING_PORT種子連線的 PORT
映射資料夾位置自訂存取檔案/設定檔的資料夾

第一次登入

  • 網址:{IP}:{WEBUI_PORT}
  • 帳號:admin
  • 密碼:用以下指令找到臨時密碼,進入之後記得改密碼。
docker compose logs qbittorrent