Files
docker/qbittorrent/docker-compose.yml
2025-09-12 21:34:37 +02:00

20 lines
417 B
YAML

---
services:
qbittorrent:
image: lscr.io/linuxserver/qbittorrent:latest
container_name: qbittorrent
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Oslo
- WEBUI_PORT=8080
- TORRENTING_PORT=6881
volumes:
- ./appdata:/config
- ./downloads:/downloads #optional
ports:
- 8080:8080
- 6881:6881
- 6881:6881/udp
restart: unless-stopped