Getting Started
Requirements
- Docker (recommended) or Bun runtime
- A running qBittorrent instance with WebUI enabled
Quick Start
bash
docker run -d \
--name qbitwebui \
-p 3000:3000 \
-v ./data:/data \
-e ENCRYPTION_KEY=$(openssl rand -hex 32) \
ghcr.io/Maciejonos/qbitwebui:latestOpen http://localhost:3000 in your browser.
First Setup
- Create Account - Register with username and password (first user is admin)
- Add Instance - Click + and enter your qBittorrent details:
- Label: A name for this instance (e.g., "Seedbox")
- URL: qBittorrent WebUI address (e.g.,
http://192.168.1.100:8080) - Username & Password: Your qBittorrent credentials
- Connect - Click the instance card to start managing torrents
TIP
If qBittorrent has "Bypass authentication for clients on localhost" enabled, check Skip authentication when adding the instance.
Docker Compose
Minimal Setup
yaml
services:
qbitwebui:
image: ghcr.io/Maciejonos/qbitwebui:latest
container_name: qbitwebui
ports:
- "3000:3000"
volumes:
- ./data:/data
environment:
- ENCRYPTION_KEY=generate-a-32-char-key-here
restart: unless-stoppedWith File Browser
yaml
services:
qbitwebui:
image: ghcr.io/Maciejonos/qbitwebui:latest
container_name: qbitwebui
ports:
- "3000:3000"
volumes:
- ./data:/data
- /path/to/downloads:/downloads:ro
environment:
- ENCRYPTION_KEY=generate-a-32-char-key-here
- DOWNLOADS_PATH=/downloads
restart: unless-stoppedGenerating Encryption Key
The ENCRYPTION_KEY is used to encrypt stored credentials. Generate a secure one:
bash
openssl rand -hex 32WARNING
Save this key securely. If you lose it, you'll need to re-add all instances.
Next Steps
- Configuration - Environment variables and options
- Features - All features explained
- Docker - Full deployment examples
- Network Agent - Network diagnostics