Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- qbittorrent:
- image: lscr.io/linuxserver/qbittorrent:latest
- container_name: qbittorrent
- network_mode: "service:gluetun"
- environment:
- - PUID=1000
- - PGID=1000
- - WEBUI_PORT=8080
- volumes:
- - /arr/qbittorrent/config:/config
- - /mnt/hdd01/media/downloads:/media/downloads
- depends_on:
- gluetun:
- condition: service_healthy
- restart: always
- gluetun:
- image: qmcgaw/gluetun
- container_name: gluetun
- hostname: gluetun
- ports:
- - 9696:9696 #prowlarr
- - 8989:8989 #sonarr
- - 7878:7878 #radarr
- - 8080:8080 #qbittorrent
- cap_add:
- - NET_ADMIN
- devices:
- - /dev/net/tun:/dev/net/tun
- environment:
- - VPN_SERVICE_PROVIDER=protonvpn
- - VPN_TYPE=wireguard
- - WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY}
- - VPN_PORT_FORWARDING=on
- - VPN_PORT_FORWARDING_UP_COMMAND=/bin/sh -c 'wget -O- --retry-connrefused --post-data "json={\"listen_port\":{{PORTS}}}" http://127.0.0.1:8080/api/v2/app/setPreferences 2>&1'
- restart: always
Add Comment
Please, Sign In to add comment