Updated service configurations, added new services, removed deprecated ones, and improved gitignore patterns for better repository hygiene. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
37 lines
1 KiB
YAML
37 lines
1 KiB
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
|
|
traefik.enable: true
|
|
traefik.docker.network: homelab
|
|
|
|
# Web UI
|
|
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
|
|
|
|
# SSO Protection
|
|
traefik.http.routers.qbittorrent.middlewares: authelia
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|