Advertisement
Guest User

Untitled

a guest
Jun 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. # to run: docker-compose run
  2. #
  3. # Create a .evn file in the same folder as this file and change the variables.
  4. # MOUNT_POINT=/tmp/
  5. # VPN_PROVIDER=changeme
  6. # VPN_CONFIG=changeme
  7. # VPN_USERNAME=changeme
  8. # VPN_PASSWORD=changeme
  9. #
  10. #
  11. version: "2"
  12.  
  13. services:
  14. radarr:
  15. image: linuxserver/radarr
  16. container_name: radarr
  17. restart: always
  18. ports:
  19. - "7878:7878"
  20. networks:
  21. - plexnet
  22. environment:
  23. - PGID=1000
  24. - PUID=1000
  25. - TZ=Europe/London
  26. volumes:
  27. - ${MOUNT_POINT}/radarr-config:/config
  28. - ${MOUNT_POINT}/transmission/completed:/downloads
  29. - ${MOUNT_POINT}/plex/movies:/movies
  30. sonarr:
  31. image: linuxserver/sonarr
  32. container_name: sonarr
  33. restart: always
  34. ports:
  35. - "8989:8989"
  36. networks:
  37. - plexnet
  38. environment:
  39. - PGID=1000
  40. - PUID=1000
  41. - TZ=Europe/London
  42. volumes:
  43. - ${MOUNT_POINT}/sonarr/config:/config
  44. - ${MOUNT_POINT}/plex/tv:/tv
  45. - ${MOUNT_POINT}/transmission/completed:/downloads
  46. jackett:
  47. image: linuxserver/jackett
  48. container_name: jackett
  49. restart: always
  50. networks:
  51. - plexnet
  52. environment:
  53. - PGID=1000
  54. - PUID=1000
  55. - TZ=Europe/London
  56. volumes:
  57. - ${MOUNT_POINT}/jackett/config:/config
  58. - ${MOUNT_POINT}/jackett/downloads:/downloads
  59. ports:
  60. - "9117:9117"
  61. plex:
  62. image: timhaak/plex
  63. container_name: plex
  64. restart: always
  65. volumes:
  66. - /Volumes/SABnzbd/complete:/data/complete
  67. ports:
  68. - "32400:32400"
  69. - "1900:1900"
  70. - "3005:3005"
  71. - "5353:5353"
  72. - "8324:8324"
  73. - "32410:32410"
  74. - "32412:32412"
  75. - "32413:32413"
  76. - "32414:32414"
  77. - "32469:32469"
  78. networks:
  79. - plexnet
  80. environment:
  81. - PGID=1000
  82. - PUID=1000
  83. - TZ=Europe/London
  84. volumes:
  85. - ${MOUNT_POINT}/plex-config:/config
  86. - ${MOUNT_POINT}/plex:/data
  87. networks:
  88. plexnet:
  89. driver: bridge
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement