Guest User

test

a guest
Jun 12th, 2025
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. version: "3.8"
  2.  
  3. services:
  4. gluetun:
  5. image: qmcgaw/gluetun
  6. container_name: gluetun
  7. cap_add:
  8. - NET_ADMIN
  9. ports:
  10. - 8080:8080
  11. - 8988:8988
  12. - 9116:9116
  13. volumes:
  14. - /media-configs/gluetun:/gluetun
  15. - /media-configs/gluetun/wireguard:/gluetun/wireguard
  16. environment:
  17. - VPN_TYPE=wireguard
  18. - VPN_SERVICE_PROVIDER=mullvad
  19. - TZ=America/New_York
  20. - FIREWALL=on
  21. - DOT=off
  22. - DNS_ADDRESS=1.1.1.1
  23. restart: unless-stopped
  24.  
  25. qbittorrent:
  26. image: lscr.io/linuxserver/qbittorrent
  27. container_name: qbittorrent
  28. network_mode: "container:gluetun"
  29. depends_on:
  30. - gluetun
  31. environment:
  32. - PUID=0
  33. - PGID=0
  34. - TZ=America/New_York
  35. - WEBUI_PORT=8080
  36. volumes:
  37. - /media-configs/qbittorrent-reset:/config
  38. - /DATA/Media:/media
  39. restart: unless-stopped
  40.  
  41. sonarr:
  42. image: lscr.io/linuxserver/sonarr
  43. container_name: sonarr
  44. environment:
  45. - PUID=0
  46. - PGID=0
  47. - TZ=America/New_York
  48. volumes:
  49. - /media-configs/sonarr:/config
  50. - /DATA/Media/TV Shows:/tv
  51. - /DATA/Media:/downloads
  52. ports:
  53. - 8990:8989
  54. restart: unless-stopped
  55.  
  56. jackett:
  57. image: lscr.io/linuxserver/jackett
  58. container_name: jackett
  59. environment:
  60. - PUID=0
  61. - PGID=0
  62. - TZ=America/New_York
  63. volumes:
  64. - /media-configs/jackett:/config
  65. - /DATA/Media:/downloads
  66. ports:
  67. - 9126:9117
  68. restart: unless-stopped
Add Comment
Please, Sign In to add comment