Advertisement
Guest User

Untitled

a guest
Jun 13th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. version: '3.4'
  2. services:
  3.  
  4. jackett:
  5. container_name: jackett
  6. image: linuxserver/jackett:latest
  7. restart: unless-stopped
  8. network_mode: host
  9. environment:
  10. - PUID=1000 # default user id, for downloaded files access rights
  11. - PGID=1000 # default group id, for downloaded files access rights
  12. - TZ=Europe/Paris # timezone
  13. volumes:
  14. - /etc/localtime:/etc/localtime:ro
  15. - /media/${USER}/data1/downloads/ongoing/torrent-blackhole:/downloads # place where to put .torrent files
  16. - ${HOME}/.config/jackett:/config # config files
  17.  
  18. sonarr:
  19. container_name: sonarr
  20. image: linuxserver/sonarr:latest
  21. restart: unless-stopped
  22. network_mode: host
  23. environment:
  24. - PUID=1000 # default user id, for downloaded files access rights
  25. - PGID=1000 # default group id, for downloaded files access rights
  26. - TZ=Europe/Paris # timezone
  27. volumes:
  28. - /etc/localtime:/etc/localtime:ro
  29. - ${HOME}/.config/sonarr:/config # config files
  30. - /media/${USER}/data1/downloads/series:/tv # tv shows folder
  31. - /media/${USER}/data1/downloads/ongoing:/downloads # download folder
  32.  
  33. radarr:
  34. container_name: radarr
  35. image: linuxserver/radarr:latest
  36. restart: unless-stopped
  37. network_mode: host
  38. environment:
  39. - PUID=1000 # default user id, for downloaded files access rights
  40. - PGID=1000 # default group id, for downloaded files access rights
  41. - TZ=Europe/Paris # timezone
  42. volumes:
  43. - /etc/localtime:/etc/localtime:ro
  44. - ${HOME}/.config/radarr:/config # config files
  45. - /media/${USER}/data1/downloads/movies:/movies # movies folder
  46. - /media/${USER}/data1/downloads/ongoing:/downloads # download folder
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement