Guest User

docker-compose.yml

a guest
Jan 3rd, 2025
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. services:
  2. qbittorrent:
  3. container_name: qbittorrent
  4. image: ghcr.io/hotio/qbittorrent
  5. ports:
  6. - "8180:8080"
  7. environment:
  8. - PUID=1000
  9. - PGID=1000
  10. - UMASK=002
  11. - TZ=Etc/UTC
  12. - WEBUI_PORTS=8080/tcp,8080/udp
  13. - VPN_ENABLED=true #
  14. - VPN_CONF=wg0 # READ THIS
  15. - VPN_PROVIDER=pia #
  16. - VPN_LAN_NETWORK=192.168.1.0/24 #
  17. - VPN_LAN_LEAK_ENABLED=false
  18. - VPN_EXPOSE_PORTS_ON_LAN #
  19. - VPN_AUTO_PORT_FORWARD=true #
  20. - VPN_AUTO_PORT_FORWARD_TO_PORTS= #
  21. - VPN_KEEP_LOCAL_DNS=false #
  22. - VPN_FIREWALL_TYPE=auto #
  23. - VPN_HEALTHCHECK_ENABLED=false
  24. - VPN_PIA_USER=*my username*
  25. - VPN_PIA_PASS=*my password*
  26. - VPN_PIA_PREFERRED_REGION #
  27. - VPN_PIA_DIP_TOKEN=no #
  28. - VPN_PIA_PORT_FORWARD_PERSIST=false #
  29. - PRIVOXY_ENABLED=false
  30. - UNBOUND_ENABLED=false #
  31. volumes:
  32. - /Users/admin/docker/hotios-qbittorrent/config:/config
  33. - /Users/admin/Downloads/Torrents:/data
  34. hostname: container-name.internal #
  35. cap_add:
  36. - NET_ADMIN
  37. sysctls:
  38. - net.ipv4.conf.all.src_valid_mark=1 #
  39. - net.ipv6.conf.all.disable_ipv6=1 #
Add Comment
Please, Sign In to add comment