Advertisement
Guest User

Untitled

a guest
Sep 5th, 2017
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. version: '2'
  2. services:
  3. transmission:
  4. image: haugene/transmission-openvpn
  5. container_name: transmission
  6. cap_add:
  7. - net_admin
  8. devices:
  9. - /dev/net/tun
  10. volumes:
  11. - /etc/localtime:/etc/localtime:ro
  12. - /opt/appdata/transmission:/config
  13. - /mnt/disk1/downloads:/downloads
  14. restart: unless-stopped
  15. ports:
  16. - 9091:9091
  17. - 8080:8080
  18. dns:
  19. - 8.8.8.8
  20. - 8.8.4.4
  21. env_file:
  22. - ~/Projects/downloaders/transmission/environment
  23. environment:
  24. - PUID=1001
  25. - PGID=1001
  26. - OPENVPN_PROVIDER=PIA
  27. - OPENVPN_CONFIG=XX
  28. - OPENVPN_USERNAME=XX
  29. - OPENVPN_PASSWORD=XX
  30. - OPENVPN_OPTS=--inactive 3600 --ping 10 --ping-exit 60
  31. - LOCAL_NETWORK=192.168.30.0/24
  32. sabnzbd:
  33. image: linuxserver/sabnzbd
  34. container_name: sabnzbd
  35. depends_on:
  36. - transmission
  37. volumes:
  38. - /etc/localtime:/etc/localtime:ro
  39. - /opt/appdata/sabnzbd:/config
  40. - /mnt/disk1/downloads:/downloads
  41. - /mnt/disk1/downloads/incomplete:/incomplete-downloads
  42. network_mode: service:transmission
  43. restart: unless-stopped
  44. environment:
  45. - PUID=1001
  46. - PGID=1001
  47. sonarr:
  48. image: linuxserver/sonarr
  49. container_name: sonarr
  50. volumes:
  51. - /etc/localtime:/etc/localtime:ro
  52. - /opt/appdata/sonarr:/config
  53. - /mnt/storage/tv:/tv
  54. - /mnt/disk1/downloads:/downloads
  55. ports:
  56. - 8989:8989
  57. links:
  58. - transmission
  59. - transmission:sabnzbd
  60. restart: unless-stopped
  61. environment:
  62. - PUID=1001
  63. - PGID=1001
  64. radarr:
  65. image: linuxserver/radarr
  66. container_name: radarr
  67. volumes:
  68. - /etc/localtime:/etc/localtime:ro
  69. - /opt/appdata/radnarr:/config
  70. - /mnt/storage/movies:/movies
  71. - /mnt/disk1/downloads:/downloads
  72. ports:
  73. - 7878:7878
  74. links:
  75. - transmission
  76. - transmission:sabnzbd
  77. restart: unless-stopped
  78. environment:
  79. - PUID=1001
  80. - PGID=1001
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement