Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. version: '3'
  2. services:
  3. Sonarr:
  4. image: linuxserver/sonarr
  5. restart: always
  6. ports:
  7. - "8989:8989"
  8. environment:
  9. - TZ=America/Chicago
  10. - PUID=1000
  11. - PGID=1000
  12. volumes:
  13. - /mnt/sdb/Containers_Common/Sonarr:/config
  14. - /mnt/sdb/Plex/Media/TVShows:/Media
  15. - /mnt/sdb/Deluge/Downloads:/Downloads
  16.  
  17. Radarr:
  18. image: linuxserver/radarr
  19. restart: always
  20. ports:
  21. - "7878:7878"
  22. environment:
  23. - TZ=America/Chicago
  24. - PUID=1000
  25. - PGID=1000
  26. volumes:
  27. - /mnt/sdb/Containers_Common/Radarr:/config
  28. - /mnt/sdb/Plex/Media/TVShows:/Media
  29. - /mnt/sdb/Deluge/Downloads:/Downloads
  30.  
  31. Deluge:
  32. image: linuxserver/deluge
  33. restart: always
  34. ports:
  35. - "8112:8112"
  36. environment:
  37. - TZ=America/Chicago
  38. - PUID=1000
  39. - PGID=1000
  40. volumes:
  41. - /mnt/sdb/Containers_Common/Radarr:/config
  42. - /mnt/sdb/Deluge/Downloads:/Downloads
  43.  
  44. Jackett:
  45. image: linuxserver/jackett
  46. restart: always
  47. ports:
  48. - "9117:9117"
  49. environment:
  50. - TZ=America/Chicago
  51. - PUID=1000
  52. - PGID=1000
  53. volumes:
  54. - /mnt/sdb/Containers_Common/Jackett/config:/config
  55. - /mnt/sdb/Containers_Common/Jackett/tmp:/Downloads
  56.  
  57. Plex:
  58. image: plexinc/pms-docker
  59. restart: always
  60. network_mode: host
  61. ports:
  62. - "32400:32400"
  63. environment:
  64. - TZ=America/Chicago
  65. - VERSION=latest
  66. - PLEX_UID=1000
  67. - PLEX_GID=1000
  68. volumes:
  69. - /mnt/sdb/Plex/Library:/config
  70. - /mnt/sdb/Plex/tmp:/Transcode
  71. - /mnt/sdb/Plex/Media:/Media
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement