Add docker-compose.yml
Some checks failed
External Trigger Scheduler / external-trigger-scheduler (push) Has been cancelled

Creation
This commit is contained in:
2025-05-20 19:00:17 -04:00
parent a36b12b504
commit 93f48ca84e

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8080
- TORRENTING_PORT=50120
volumes:
- ./qbittorrent/appdata:/config
- /mnt/8tbraid/qbit:/downloads #optional
ports:
- 8080:8080
- 50120:50120
- 50120:50120/udp
restart: unless-stopped
networks:
- Video
networks:
Video:
external: true