Guest User

Untitled

a guest
Jun 6th, 2023
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. services:
  2. gluetun:
  3. image: qmcgaw/gluetun
  4. container_name: gluetun
  5. network_mode: bridge
  6. cap_add:
  7. - NET_ADMIN
  8. environment:
  9. - VPN_SERVICE_PROVIDER=windscribe
  10. - OPENVPN_USER=REDACTED
  11. - OPENVPN_PASSWORD=REDACTED
  12. - SERVER_REGIONS=Netherlands
  13. volumes:
  14. - ./gluetun:/gluetun
  15. ports:
  16. # the usenet thing, qbit, prowlarr
  17. - 8080:8080/tcp
  18. - 6881:6881/tcp
  19. - 9090:9090/tcp
  20. - 9091:9091/tcp
  21. - 9092:9092
  22. - 51413:51413
  23. - 51413:51413/udp
  24.  
  25. sabnzbd:
  26. image: lscr.io/linuxserver/sabnzbd:latest
  27. container_name: sabnzbd
  28. environment:
  29. - PUID=1000
  30. - PGID=1000
  31. - TZ=Etc/UTC
  32. volumes:
  33. - /path/to/data:/config
  34. - /data/usenet/complete:/downloads #optional
  35. - //data/usenet/incomplete:/incomplete-downloads #optional
  36. network_mode: "service:gluetun"
  37. depends_on:
  38. - gluetun
  39. restart: unless-stopped
  40. qbittorrent:
  41. image: lscr.io/linuxserver/qbittorrent:latest
  42. container_name: qbittorrent
  43. environment:
  44. - PUID=1000
  45. - PGID=1000
  46. - TZ=Etc/UTC
  47. - WEBUI_PORT=9090
  48. volumes:
  49. - /path/to/appdata/config:/config
  50. - /data/torrents:/downloads
  51. restart: unless-stopped
  52. network_mode: "service:gluetun"
  53. depends_on:
  54. - gluetun
  55. radarr:
  56. container_name: radarr
  57. image: cr.hotio.dev/hotio/radarr:latest
  58. restart: unless-stopped
  59. logging:
  60. driver: json-file
  61. ports:
  62. - 7878:7878
  63. environment:
  64. - PUID=1000
  65. - PGID=1000
  66. - TZ=Europe/Amsterdam
  67. - WEBUI_PORT=9091
  68. volumes:
  69. - /etc/localtime:/etc/localtime:ro
  70. - /docker/appdata/radarr:/config
  71. - /data/media/movies:/movies
  72. sonarr:
  73. image: lscr.io/linuxserver/sonarr:latest
  74. container_name: sonarr
  75. environment:
  76. - PUID=1000
  77. - PGID=1000
  78. - TZ=Etc/UTC
  79. volumes:
  80. - /path/to/data:/config
  81. - /data/media/tv:/tv #optional
  82. - /path/to/downloadclient-downloads:/downloads #optional
  83. restart: unless-stopped
  84. ports:
  85. - 8989:8989
  86. prowlarr:
  87. image: lscr.io/linuxserver/prowlarr:latest
  88. container_name: prowlarr
  89. environment:
  90. - PUID=1000
  91. - PGID=1000
  92. - TZ=Etc/UTC
  93. volumes:
  94. - /docker/appdata/prowlarr:/config
  95. ports:
  96. - 9696:9696
  97. restart: unless-stopped
Add Comment
Please, Sign In to add comment