Files
docker/containers/qbittorrent/docker-compose.yml
Thierry Schork 15bdd2e50d Added qbittorrent container.
No traefik because of the ingress of UDP need
2026-03-27 21:18:59 +01:00

22 lines
474 B
YAML

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