Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. radarr:
  2. image: "linuxserver/radarr"
  3. container_name: "radarr"
  4. volumes:
  5. - ${USERDIR}/docker/radarr:/config
  6. - ${USERDIR}/downloads/completed:/downloads
  7. - ${USERDIR}/Synology:/movies
  8. - "/etc/localtime:/etc/localtime:ro"
  9. - ${USERDIR}/docker/shared:/shared
  10. ports:
  11. - "7878:7878"
  12. restart: always
  13. environment:
  14. - PUID=${PUID}
  15. - PGID=${PGID}
  16. - TZ=${TZ}
  17.  
  18. image: "linuxserver/nzbget"
  19. container_name: "nzbget"
  20. volumes:
  21. - ${USERDIR}/docker/nzbget:/config
  22. - ${USERDIR}/downloads/completed:/downloads
  23. - ${USERDIR}/downloads/incomplete:/incomplete-downloads
  24. - ${USERDIR}/docker/shared:/shared
  25. ports:
  26. - "6789:6789"
  27. restart: always
  28. environment:
  29. - PUID=${PUID}
  30. - PGID=${PGID}
  31. - TZ=${TZ}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement