nas_docker_compose/qbittorrent/docker-compose.yaml
2024-08-31 01:02:55 +08:00

21 lines
439 B
YAML
Executable File

---
services:
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- ./config:/config
- /mnt/disk1/downloads:/downloads #optional
- /mnt/disk1/videos:/videos
ports:
- 4009:8080
- 6881:6881
- 6881:6881/udp
restart: always