qBittorrent¶
Cliente torrent con web UI. Integrado con el *arr stack para descargas automáticas.
📁 Rutas y configs¶
| Qué | Dónde |
|---|---|
| Compose | /opt/docker/qbittorrent/compose.yaml |
| Config | /opt/docker/qbit/ |
| Descargas | /mnt/hdd_2tb/qbit/ |
Contenedor: qbittorrent Puertos: 8500 (web), 6881 (torrent)
Compose¶
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8500
- TORRENTING_PORT=6881
volumes:
- /opt/docker/qbit/:/config
- /mnt/hdd_2tb/qbit/:/downloads
- /mnt/hdd_2tb/jellyfin/:/media
ports:
- 8500:8500
- 6881:6881
- 6881:6881/udp
restart: unless-stopped
networks:
- arr-network
networks:
arr-network:
external: true