Inital Commit - qBitTorrent
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!docker-compose.yml
|
||||
39
docker-compose.yml
Normal file
39
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user