Guest User

Untitled

a guest
Jun 3rd, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | Source Code | 0 0
  1. services:
  2. #----------------------------
  3. gluetun:
  4. image: qmcgaw/gluetun
  5. container_name: gluetun
  6. # See https://github.com/qdm12/gluetun-wiki/blob/main/setup/connect-a-container-to-gluetun.md#external-container-to-gluetun
  7. cap_add:
  8. - NET_ADMIN
  9. devices:
  10. - /dev/net/tun:/dev/net/tun
  11. privileged: true
  12. network_mode: bridge
  13. ports:
  14. # - 7889:7889
  15. - 8888:8888 # Healtycheck
  16. #- 6881:6881/udp
  17. - 8060:8060 # SABnzbd
  18. - 8085:8085 # empty
  19. - 8989:8989 # Sonarr
  20. - 9696:9696 # Prowlarr
  21. - 8686:8686 # lidarr
  22. - 7878:7878 # Radarr
  23. - 8100:8000 # Remote Control VPN
  24. - 8882:8882 # qbittorent
  25. - 3000:3000 #firefox
  26. - 18131:18131 #qbit
  27. - 37283:37283/tcp
  28. - 37283:37283/udp
  29. environment:
  30.  
  31. - VPN_SERVICE_PROVIDER=airvpn
  32. - VPN_TYPE=wireguard
  33. - WIREGUARD_PRIVATE_KEY= # input private key
  34. - WIREGUARD_PRESHARED_KEY=. # input preshared key
  35. - WIREGUARD_ADDRESSES=. # input address
  36. - WIREGUARD_ENDPOINT_PORT= # Default port for AirVPN
  37. - SERVER_COUNTRIES=
  38. - SERVER_CITIES= # input city
  39. - SERVER_NAMES=
  40. - FIREWALL_VPN_INPUT_PORTS=# insert forwarded port
  41.  
  42.  
  43. - PUID=1000
  44. - PGID=1000
  45. - TZ=Europe/Berlin
  46. volumes:
  47. - /srv/arrServs/glueTunVPNServer/config:/config
  48. restart: always
  49.  
  50. #----------------------------
  51.  
  52. qbittorrent:
  53. image: lscr.io/linuxserver/qbittorrent:latest
  54. container_name: qbittorrent
  55. network_mode: "service:gluetun"
  56. environment:
  57. - PUID=1000
  58. - PGID=1000
  59. - TZ=Europe/Berlin
  60. - WEBUI_PORT=8882
  61. volumes:
  62. - /srv/arrServs/qbittorentServer/config/:/config
  63. - /media/HDD/Torrents/Completed:/Downloads
  64. depends_on:
  65. gluetun:
  66. condition: service_healthy
  67. restart: unless-stopped
Add Comment
Please, Sign In to add comment