feat: qbittorrent

This commit is contained in:
2025-11-27 22:21:51 +01:00
parent ce43b34ce0
commit f531393481
2 changed files with 26 additions and 1 deletions
+1
View File
@@ -25,6 +25,7 @@ streaming/jellyseerr/*
streaming/sonarr/*
streaming/radarr/*
streaming/data/*
streaming/qbittorrent/*
# Homepage
homepage/files/assets/images/team/*
+25 -1
View File
@@ -15,6 +15,7 @@ services:
- ./data/downloads:/downloads
networks:
- traefik-proxy
- streaming
restart: unless-stopped
jellyseerr:
@@ -38,6 +39,7 @@ services:
restart: unless-stopped
networks:
- traefik-proxy
- streaming
sonarr:
image: ghcr.io/hotio/sonarr:latest
@@ -55,9 +57,31 @@ services:
- ./data/downloads:/downloads
networks:
- traefik-proxy
- streaming
restart: unless-stopped
depends_on:
- qbittorrent
qbittorrent:
image: ghcr.io/hotio/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- UMASK=002
- TZ=Europe/Moscow
ports:
- "8181:8080"
- "6881:6881/udp"
volumes:
- ./qbittorrent:/config
- ./data:/data
restart: unless-stopped
networks:
- streaming
networks:
traefik-proxy:
external: true
external: true
streaming:
driver: bridge