Guest User

Untitled

a guest
Oct 27th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.04 KB | None | 0 0
  1. version: '3.3'
  2.  
  3. services:
  4. # DOWNLOADERS
  5. transmission:
  6. image: linuxserver/transmission
  7. ports:
  8. - "51413:51413"
  9. - "51413:51413/udp"
  10. - "9091:9091"
  11. environment:
  12. PGID: 1000
  13. PUID: 1000
  14. TZ: Europe/Amsterdam
  15. volumes:
  16. - transmissionconfig:/config
  17. - transmissiondownloads:/downloads
  18. - transmissionwatch:/watch
  19. - transmissiondownloadscomplete:/lvm-hdd/downloads
  20. - transmissiondownloadscomplete:/downloads/complete
  21. nzbget:
  22. image: linuxserver/nzbget
  23. ports:
  24. - "6789:6789"
  25. environment:
  26. PGID: 1000
  27. PUID: 1000
  28. TZ: Europe/Amsterdam
  29. volumes:
  30. - nzbconfig:/config
  31. - nzbdownloads:/downloads
  32. # MANAGERS
  33. radarr:
  34. image: linuxserver/radarr
  35. environment:
  36. PUID: 1000
  37. PGID: 1000
  38. TZ: Europe/Amsterdam
  39. ports:
  40. - "7878:7878"
  41. volumes:
  42. - "radarrconfig:/config"
  43. sonarr:
  44. image: linuxserver/sonarr
  45. environment:
  46. PUID: 1000
  47. PGID: 1000
  48. TZ: Europe/Amsterdam
  49. ports:
  50. - "8989:8989"
  51. volumes:
  52. - sonarrconfig:/config
  53. - sonarrtv:/tv
  54. lidarr:
  55. image: linuxserver/lidarr
  56. environment:
  57. PUID: 1000
  58. PGID: 1000
  59. TZ: Europe/Amsterdam
  60. ports:
  61. - "8686:8686"
  62. volumes:
  63. - lidarrconfig:/config
  64. - lidarrdownloads:/downloads
  65. # SEARCHERS
  66. jackett:
  67. image: linuxserver/jackett
  68. ports:
  69. - "9117:9117"
  70. environment:
  71. PUID: 1000
  72. PGID: 1000
  73. TZ: Europe/Amsterdam
  74. volumes:
  75. - jackettconfig:/config
  76. - jackettdownloads:/downloads
  77. nzbhydra:
  78. image: linuxserver/hydra2
  79. environment:
  80. PUID: 1000
  81. PGID: 1000
  82. TZ: Europe/Amsterdam
  83. volumes:
  84. - nzbhydraconfig:/config
  85. - nzbhydradownloads:/downloads
  86. spotweb:
  87. image: jgeusebroek/spotweb
  88. environment:
  89. TZ: Europe/Amsterdam
  90. SPOTWEB_DB_TYPE: pdo_mysql
  91. SPOTWEB_DB_HOST: {SQLDB_IP}
  92. SPOTWEB_DB_NAME: spotweb
  93. SPOTWEB_DB_USER: spotweb_user
  94. SPOTWEB_DB_PASS: sportweb_db
  95. SPOTWEB_CRON_RETRIEVE: "*/15 * * * *"
  96. ports:
  97. - "8080:80"
  98. volumes:
  99. - spotwebconfig:/config
  100.  
  101. volumes:
  102. sonarrconfig:
  103. driver_opts:
  104. type: none
  105. device: /mnt/lvm-hdd/docker/containers/sonarr/config
  106. o: bind
  107. sonarrtv:
  108. driver_opts:
  109. type: none
  110. device: /mnt/lvm-ssd/sonarr/tv
  111. o: bind
  112. radarrconfig:
  113. driver_opts:
  114. type: none
  115. device: /mnt/lvm-ssd/radarr/config
  116. o: bind
  117. transmissionconfig:
  118. driver_opts:
  119. type: none
  120. device: /mnt/lvm-ssd/transmission/config
  121. o: bind
  122. transmissiondownloads:
  123. driver_opts:
  124. type: none
  125. device: /mnt/lvm-hdd/docker/transmission/downloads/incomplete
  126. o: bind
  127. transmissionwatch:
  128. driver_opts:
  129. type: none
  130. device: /mnt/lvm-hdd/docker/transmission/watch
  131. o: bind
  132. transmissiondownloadscomplete:
  133. driver_opts:
  134. type: none
  135. device: /mnt/lvm-hdd/docker/transmission/downloads/complete
  136. o: bind
  137. rutorrentvol:
  138. driver_opts:
  139. type: none
  140. device: /mnt/lvm-hdd/docker/rutorrent/downloads
  141. o: bind
  142. lidarrconfig:
  143. driver_opts:
  144. type: none
  145. device: /mnt/lvm-ssd/lidarr/config
  146. o: bind
  147. lidarrdownloads:
  148. driver_opts:
  149. type: none
  150. device: /mnt/lvm-hdd/docker/lidarr/downloads
  151. o: bind
  152. jackettconfig:
  153. driver_opts:
  154. type: none
  155. device: /mnt/lvm-ssd/jackett/config
  156. o: bind
  157. jackettdownloads:
  158. driver_opts:
  159. type: none
  160. device: /mnt/lvm-hdd/docker/jackett/downloads
  161. o: bind
  162. nzbhydraconfig:
  163. driver_opts:
  164. type: none
  165. device: /mnt/lvm-ssd/nzbhydra2/config
  166. o: bind
  167. nzbhydradownloads:
  168. driver_opts:
  169. type: none
  170. device: /mnt/lvm-hdd/docker/nzbhydra2
  171. o: bind
  172. nzbconfig:
  173. driver_opts:
  174. type: none
  175. device: /mnt/lvm-ssd/nzbget/config
  176. o: bind
  177. nzbdownloads:
  178. driver_opts:
  179. type: none
  180. device: /mnt/lvm-ssd/nzbget/downloads
  181. o: bind
  182. spotwebconfig:
  183. driver_opts:
  184. type: none
  185. device: /mnt/lvm-ssd/spotweb/config
  186. o: bind
Add Comment
Please, Sign In to add comment