Update all media services to use the correct mount point at /mnt/media for consistency across Sonarr, Radarr, SABnzbd, qBittorrent, Jellyfin, and Immich. This ensures proper file access and atomic moves between download and library directories.
31 lines
967 B
YAML
31 lines
967 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
|
|
traefik.http.routers.qbittorrent.middlewares: tinyauth
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|