Inital Commit - qBitTorrent

This commit is contained in:
2022-03-01 14:10:20 +02:00
commit 169ad3ba59
2 changed files with 41 additions and 0 deletions

39
docker-compose.yml Normal file
View File

@@ -0,0 +1,39 @@
---
version: "3.7"
services:
qbittorrent:
container_name: qbittorrent
image: hotio/qbittorrent
ports:
- "8080:8080"
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Asia/Jerusalem
volumes:
- ./config:/config
- "/Red-Vol/Torrents/:/torrents/"
ports:
- 6881:6881
- 6881:6881/udp
- 8080:8080
restart: unless-stopped
networks:
- arr_network
- network
labels:
- "traefik.enable=true"
- "traefik.docker.network=qbittorrent_network"
- "traefik.http.routers.qbittorrent.entrypoints=websecure"
- "traefik.http.services.qbittorrent.loadbalancer.server.port=8080"
- "traefik.http.routers.qbittorrent.rule=Host(`torrent.pukeko.xyz`)"
- "traefik.http.routers.qbittorrent.tls.certresolver=pukekoresolver"
- "traefik.http.routers.qbittorrent.middlewares=authelia@docker"
networks:
arr_network:
external: true
name: arr_network
network:
driver: bridge