b站视频教程:
qbitwebui是一款qbittorrent的多实例管理工具,可以查看和控制下载任务
提供非常美观的webui页面
项目仓库
docker-compose:
services:
qbitwebui:
image: ghcr.io/maciejonos/qbitwebui:latest
ports:
- "3000:3000"
environment:
# Generate your own: openssl rand -hex 32
- ENCRYPTION_KEY=your-secret-key-here
# Uncomment to allow HTTPS with self-signed certificates
# - ALLOW_SELF_SIGNED_CERTS=true
volumes:
- ./data:/data
restart: unless-stopped