Docker Compose

yaml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: "3.9"

services:
  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    hostname: qbittorrent
    restart: unless-stopped
    ports:
      - "8080:8080"
    volumes:
      - /docker/qbittorrent/config:/config
      - /docker/qbittorrent/downloads:/downloads
    environment:
      - PUID=1000
      - PGID=1000
      - WEBUI_PORT=8080
      - TORRENTING_PORT=6881
      - TZ=Asia/Shanghai
networks:
  default:
    external: true
    name: rod

使用 qBittorrent

打开 WebUI 管理界面 (http://localhost:8080):

默认账号: admin
默认密码: 使用 docker logs -f qbittorrent 查看临时密码。