40 lines
1010 B
YAML
40 lines
1010 B
YAML
---
|
|
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
|