homelab/compose/media/automation/qbittorrent/compose.yaml
Eduardo Figueroa a1824a4043 refactor(media): Remove Tinyauth middleware from media automation services
Remove Tinyauth SSO middleware from all media automation services
(Lidarr, Profilarr, Prowlarr, qBittorrent, Radarr, SABnzbd, Sonarr)
and Jellyseerr. These services will migrate to Authelia for SSO.
2025-12-12 23:16:59 +00:00

30 lines
906 B
YAML

# qBittorrent - Bittorrent client with WebUI
# Docs: https://docs.linuxserver.io/images/docker-qbittorrent/
services:
qbittorrent:
container_name: qbittorrent
image: lscr.io/linuxserver/qbittorrent:latest
env_file:
- .env
volumes:
- ./config:/config
- /mnt/media/downloads:/downloads
- /mnt/media/complete:/complete
- /mnt/media/incomplete:/incomplete
ports:
- "6881:6881" # BitTorrent port
- "6881:6881/udp" # BitTorrent DHT
restart: unless-stopped
networks:
- homelab
labels:
traefik.enable: true
traefik.http.routers.qbittorrent.rule: Host(`qbt.fig.systems`)
traefik.http.routers.qbittorrent.entrypoints: websecure
traefik.http.routers.qbittorrent.tls.certresolver: letsencrypt
traefik.http.services.qbittorrent.loadbalancer.server.port: 8080
networks:
homelab:
external: true