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

51 lines
1.4 KiB
YAML
Raw Normal View History

2022-06-24 16:45:57 -07:00
services:
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: qbittorrent_qbittorrent
deploy:
resources:
limits:
memory: 6G
2024-08-20 21:42:19 -07:00
networks:
- web
2022-06-24 16:45:57 -07:00
restart: "no"
2022-06-24 17:12:13 -07:00
volumes:
- $DOCKER_DATA:/config
- $TORRENT_DATA:/torrenting
- ./discord_notifier.sh:/discord_notifier.sh
2024-04-25 11:39:56 -07:00
- ./discord_notifier_secrets.env:/discord_notifier_secrets.env
environment:
PUID: 1001
PGID: 1001
TZ: America/Los_Angeles
WEBUI_PORT: 8080
2024-08-20 21:42:19 -07:00
ports:
2024-08-20 22:11:35 -07:00
- 49500:49500
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
- traefik.http.routers.qbt-api.rule=Host(`api.qbt.jafner.net`)
- traefik.http.routers.qbt-api.tls.certresolver=lets-encrypt
- traefik.http.routers.qbt-api.middlewares=lan-only@file
2022-07-12 01:04:31 -07:00
- traefik.http.services.qbt.loadbalancer.server.port=8080
exporter-qbittorrent:
image: esanchezm/prometheus-qbittorrent-exporter:latest
container_name: qbittorrent_exporter
environment:
QBITTORRENT_HOST: http://qbittorrent
QBITTORRENT_PORT: 8080
restart: "no"
networks:
- monitoring
- web
labels:
- traefik.enable=false
2022-06-24 16:45:57 -07:00
networks:
web:
external: true
monitoring:
2024-02-15 01:05:32 -08:00
external: true