Files
opt/compose.qbittorrent.yaml

22 lines
536 B
YAML

services:
qbittorrent:
container_name: qbittorrent
image: linuxserver/qbittorrent:5.0.1
depends_on:
- gluetun
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
- WEBUI_PORT=9092
restart: unless-stopped
volumes:
- /opt/qbittorrent:/config
- /media/scratch/qbittorrent:/downloads/qbittorrent
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9092/"]
interval: 30s
timeout: 10s
retries: 3
network_mode: "service:gluetun"