add qbittorrent
This commit is contained in:
parent
61ce15dac5
commit
5c9780a426
38
nas/qbittorrent/docker-compose.yml
Normal file
38
nas/qbittorrent/docker-compose.yml
Normal file
@ -0,0 +1,38 @@
|
||||
---
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user