boskabouter007

compose.yaml

Apr 2nd, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. volumes:
  2. nas_share:
  3. driver: local
  4. driver_opts:
  5. type: cifs
  6. device: //192.168.nn.nn/data
  7. o: username=media_arr,password=***********,vers=3.0,uid=1000,gid=1000,file_mode=0777,dir_mode=0777
  8. name: nas_share
  9.  
  10. services:
  11. sabnzbd:
  12. container_name: sabnzbd
  13. image: ghcr.io/hotio/sabnzbd
  14. restart: unless-stopped
  15. stop_grace_period: 60s
  16. ports:
  17. - "8080:8080"
  18. environment:
  19. - PUID=1000
  20. - PGID=1000
  21. - UMASK=002
  22. - TZ=Europe/Brussels
  23. - ARGS
  24. volumes:
  25. - $HOME/docker/sabnzbd:/config
  26. - nas_share:/data
  27. deploy:
  28. resources:
  29. limits:
  30. cpus: '4.00'
  31. memory: 2048M
  32. reservations:
  33. cpus: '1.00'
  34. memory: 1024M
  35.  
  36. sonarr:
  37. container_name: sonarr
  38. image: ghcr.io/hotio/sonarr:latest
  39. ports:
  40. - "8989:8989"
  41. environment:
  42. - PUID=1000
  43. - PGID=1000
  44. - UMASK=002
  45. - TZ=Europe/Brussels
  46. volumes:
  47. - $HOME/docker/sonarr:/config
  48. - nas_share:/data
  49.  
  50. radarr:
  51. container_name: radarr
  52. image: ghcr.io/hotio/radarr
  53. ports:
  54. - "7878:7878"
  55. environment:
  56. - PUID=1000
  57. - PGID=1000
  58. - UMASK=002
  59. - TZ=Europe/Brussels
  60. volumes:
  61. - $HOME/docker/radarr:/config
  62. - nas_share:/data
  63.  
  64. qbittorrent:
  65. container_name: qbittorrent
  66. image: ghcr.io/hotio/qbittorrent
  67. ports:
  68. - 9090:8080
  69. - 6881:6881
  70. - 6881:6881/udp
  71. environment:
  72. - PUID=1000
  73. - PGID=1000
  74. - UMASK=002
  75. - TZ=Europe/Brussels
  76. - WEBUI_PORTS=8080/tcp,8080/udp
  77. volumes:
  78. - $HOME/docker/qbittorrent:/config
  79. - nas_share:/data
  80.  
  81.  
Add Comment
Please, Sign In to add comment