homelab/fighter/config/qbittorrent/docker-compose.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2022-06-24 16:45:57 -07:00
version: "3"
services:
qbittorrent:
image: linuxserver/qbittorrent
container_name: qbittorrent_qbittorrent
deploy:
resources:
limits:
memory: 6G
2022-06-24 16:45:57 -07:00
networks:
- web
restart: "no"
2022-06-24 17:12:13 -07:00
volumes:
- $DOCKER_DATA:/config
- $TORRENT_DATA:/torrenting
2022-06-24 16:45:57 -07:00
env_file:
2022-11-01 00:34:43 -07:00
- qbittorrent.env
2022-06-24 16:45:57 -07:00
ports:
2022-06-24 17:25:36 -07:00
- 50000:50000
2022-06-24 16:45:57 -07:00
labels:
- traefik.http.routers.qbt.rule=Host(`qbt.jafner.net`)
- traefik.http.routers.qbt.tls.certresolver=lets-encrypt
- traefik.http.routers.qbt.middlewares=traefik-forward-auth-privileged@file
2022-07-12 01:04:31 -07:00
- traefik.http.services.qbt.loadbalancer.server.port=8080
# - traefik.http.routers.qbt.priority=10
# - traefik.http.routers.qbt-auth.rule=Host(`qbt.jafner.net`) && PathPrefix(`/outpost.goauthentik.io/`)
# - traefik.http.routers.qbt-auth.priority=15
# - traefik.http.routers.qbt-auth.service=authentik-auth@file
exporter-qbittorrent:
image: esanchezm/prometheus-qbittorrent-exporter
container_name: qbittorrent_exporter
env_file:
- exporter.env
restart: "no"
networks:
- monitoring
- web
labels:
- traefik.enable=false
2022-06-24 16:45:57 -07:00
networks:
web:
external: true
monitoring:
2022-06-24 16:45:57 -07:00
external: true