Advertisement
doctorase

sonarr + prowlarr docker compose

Jun 12th, 2023 (edited)
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. version: "3.7"
  2.  
  3. services:
  4. sonarr:
  5. container_name: sonarr
  6. image: cr.hotio.dev/hotio/sonarr
  7. ports:
  8. - "8989:8989"
  9. environment:
  10. - PUID=2
  11. - PGID=4
  12. - UMASK=002
  13. - TZ=Europe/Madrid
  14. volumes:
  15. - /Volume1/sonarr:/config
  16. - /Volume2:/data
  17. - /Volume1/public:/extras
  18. prowlarr:
  19. container_name: prowlarr
  20. image: cr.hotio.dev/hotio/prowlarr
  21. ports:
  22. - "9696:9696"
  23. environment:
  24. - PUID=2
  25. - PGID=4
  26. - UMASK=002
  27. - TZ=Europe/Madrid
  28. volumes:
  29. - /Volume1/prowlarr:/config
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement