38 lines
745 B
YAML
38 lines
745 B
YAML
---
|
|
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=1026
|
|
- PGID=1026
|
|
- TZ=America/New_York
|
|
- WEBUI_PORT=8080
|
|
- TORRENTING_PORT=6881
|
|
|
|
volumes:
|
|
- qbittorrent_data:/config
|
|
- /volume1/downloads:/downloads
|
|
|
|
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.services.qbittorrent.loadbalancer.server.port=8080"
|
|
- 'traefik.http.routers.qbittorrent.middlewares='
|
|
|
|
networks:
|
|
- web
|
|
|
|
ports:
|
|
- 8080:8080
|
|
- 6881:6881
|
|
- 6881:6881/udp
|
|
networks:
|
|
web:
|
|
external: true
|
|
|
|
volumes:
|
|
qbittorrent_data:
|
|
driver: local
|
|
name: qbittorrent_data |