Advertisement
Pogmothoin22

Untitled

Oct 4th, 2017
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. # proper location of this file: /opt/docker-compose.yml my edit
  2. # command to execute script: cd /opt && sudo docker-compose -f docker-compose.yml up -d
  3. # use portainer http://ipv4address.com:9000 to remove BAD containers
  4. # the spacing is very important as shown below; failure to do so results in errors on script execution
  5.  
  6. ---
  7. version: '2'
  8. services:
  9. plex:
  10. image: plexinc/pms-docker:plexpass
  11. container_name: plex
  12. volumes:
  13. - /opt/appdata/plex:/config
  14. - /mnt:/media
  15. - /transcode:/transcode
  16. network_mode: host
  17. restart: always
  18. environment:
  19. - PUID=1001
  20. - PGID=1001
  21. portainer:
  22. image: portainer/portainer
  23. container_name: portainer
  24. command: --templates http://templates/templates.json
  25. volumes:
  26. - /opt/appdata/portainer:/data
  27. - /var/run/docker.sock:/var/run/docker.sock
  28. ports:
  29. - 9000:9000
  30. # ensures this container starts up when required to
  31. restart:
  32. always
  33. plexpy:
  34. image: linuxserver/plexpy
  35. container_name: plexpy
  36. depends_on:
  37. - plex
  38. volumes:
  39. - /opt/appdata/plexpy:/config
  40. - /opt/appdata/plex/Library/Application\ Support/Plex\ Media\
  41. ports:
  42. - 8181:8181
  43. links:
  44. - plex
  45. # ensures this container starts up when required to
  46. restart: always
  47. environment:
  48. - PUID=1001
  49. - PGID=1001
  50. ombi:
  51. image: linuxserver/ombi
  52. container_name: ombi
  53. ports:
  54. - 3579:3579
  55. volumes:
  56. - /opt/appdata/ombi:/config
  57. - /etc/localtime:/etc/localtime:ro
  58. environment:
  59. - PUID=1001
  60. - PGID=1001
  61. # ensures this container starts up when required to
  62. restart:
  63. always
  64. sonarr:
  65. image: linuxserver/sonarr
  66. container_name: sonarr
  67. ports:
  68. - 8989:8989
  69. volumes:
  70. # location to store sonarr data
  71. - /opt/appdata/sonarr:/config
  72. # important for providing time; don’t fully understand it
  73. - /etc/localtime:/etc/localtime:ro
  74. # this location is used to FORCE uploads of your tv shows to your google drive
  75. - /mnt/rclone-d/zilch/tv:/tv
  76. # directory to store downloads of downloaded files
  77. - /mnt/nzbget/downloads:/downloads
  78. environment:
  79. - PUID=0
  80. - PGID=0
  81. # ensures this container starts up when required to
  82. restart:
  83. always
  84. radarr:
  85. image: linuxserver/radarr
  86. container_name: radarr
  87. ports:
  88. - 7878:7878
  89. volumes:
  90. # location to store radarr data
  91. - /opt/appdata/radarr:/config
  92. # important for providing time; don’t fully understand it
  93. - /etc/localtime:/etc/localtime:ro
  94. # this location is used to FORCE uploads of your tv shows to your google drive
  95. - /mnt/rclone-d/zilch/movies:/movies
  96. # directory to store downloads of downloaded files
  97. - /mnt/nzbget/downloads/:/downloads
  98. environment:
  99. - PUID=0
  100. - PGID=0
  101. # ensures this container starts up when required to
  102. restart:
  103. always
  104. nzbget:
  105. image: linuxserver/nzbget
  106. container_name: nzbget
  107. ports:
  108. - 6789:6789
  109. volumes:
  110. - /opt/appdata/nzbget/config:/config
  111. - /mnt/nzbget/downloads:/downloads
  112. environment:
  113. - PUID=1001
  114. - PGID=1001
  115. - TZ=IE
  116. # ensures this container starts up when required to
  117. restart:
  118. always
  119. muximux:
  120. image: linuxserver/muximux
  121. container_name: muximux
  122. ports:
  123. - 80:80
  124. volumes:
  125. - /opt/appdata/muximux/config:/config
  126. - /etc/localtime:/etc/localtime:ro
  127. environment:
  128. - PUID=1001
  129. - PGID=1001
  130. restart:
  131. always
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement