Advertisement
Guest User

Untitled

a guest
Jan 30th, 2025
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.70 KB | None | 0 0
  1. version: "3.2"
  2. services:
  3. # Radarr - https://hotio.dev/containers/radarr/
  4. # mkdir /volume1/docker/appdata/radarr
  5. radarr:
  6. container_name: radarr
  7. image: lscr.io/linuxserver/radarr:latest
  8. restart: unless-stopped
  9. logging:
  10. driver: json-file
  11. options:
  12. max-file: ${DOCKERLOGGING_MAXFILE}
  13. max-size: ${DOCKERLOGGING_MAXSIZE}
  14. labels:
  15. - org.hotio.pullio.update=${PULLIO_UPDATE}
  16. - org.hotio.pullio.notify=${PULLIO_NOTIFY}
  17. - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK}
  18. ports:
  19. - 7878:7878
  20. environment:
  21. - PUID=${PUID}
  22. - PGID=${PGID}
  23. - TZ=${TZ}
  24. - UMASK=002
  25. volumes:
  26. - /etc/localtime:/etc/localtime:ro
  27. - ${DOCKERCONFDIR}/radarr:/config
  28. - ${DOCKERSTORAGEDIR}:/data
  29. - /volume1/docker/appdata/radarr/data-01:/custom-services.d
  30. - /volume1/docker/appdata/radarr/data-02:/custom-cont-init.d
  31.  
  32. # Sonarr - https://hotio.dev/containers/sonarr/
  33. # mkdir /volume1/docker/appdata/sonarr
  34. sonarr:
  35. container_name: sonarr
  36. image: lscr.io/linuxserver/sonarr:develop
  37. restart: unless-stopped
  38. logging:
  39. driver: json-file
  40. options:
  41. max-file: ${DOCKERLOGGING_MAXFILE}
  42. max-size: ${DOCKERLOGGING_MAXSIZE}
  43. labels:
  44. - org.hotio.pullio.update=${PULLIO_UPDATE}
  45. - org.hotio.pullio.notify=${PULLIO_NOTIFY}
  46. - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK}
  47. ports:
  48. - 8989:8989
  49. environment:
  50. - PUID=${PUID}
  51. - PGID=${PGID}
  52. - TZ=${TZ}
  53. - UMASK=002
  54. volumes:
  55. - /etc/localtime:/etc/localtime:ro
  56. - ${DOCKERCONFDIR}/sonarr:/config
  57. - ${DOCKERSTORAGEDIR}:/data
  58. - /volume1/docker/appdata/sonarr/data-01:/custom-services.d
  59. - /volume1/docker/appdata/sonarr/data-02:/custom-cont-init.d
  60. # Bazarr - https://hotio.dev/containers/bazarr/
  61. # mkdir /volume1/docker/appdata/bazarr
  62. bazarr:
  63. container_name: bazarr
  64. image: lscr.io/linuxserver/bazarr:development
  65. restart: unless-stopped
  66. logging:
  67. driver: json-file
  68. options:
  69. max-file: ${DOCKERLOGGING_MAXFILE}
  70. max-size: ${DOCKERLOGGING_MAXSIZE}
  71. labels:
  72. - org.hotio.pullio.update=${PULLIO_UPDATE}
  73. - org.hotio.pullio.notify=${PULLIO_NOTIFY}
  74. - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK}
  75. ports:
  76. - 6767:6767
  77. environment:
  78. - PUID=${PUID}
  79. - PGID=${PGID}
  80. - TZ=${TZ}
  81. - UMASK=002
  82. volumes:
  83. - /etc/localtime:/etc/localtime:ro
  84. - ${DOCKERCONFDIR}/bazarr:/config
  85. - ${DOCKERSTORAGEDIR}/media:/data/media
  86.  
  87. # Prowlarr - https://hotio.dev/containers/prowlarr/
  88. #
  89. # Don't forget to create the directory, change chown command if needed (the user:group part)
  90. # sudo -u docker mkdir -m=00775 /volume1/docker/appdata/prowlarr
  91. #
  92. prowlarr:
  93. container_name: prowlarr
  94. image: hotio/prowlarr:testing
  95. restart: unless-stopped
  96. logging:
  97. driver: json-file
  98. options:
  99. max-file: ${DOCKERLOGGING_MAXFILE}
  100. max-size: ${DOCKERLOGGING_MAXSIZE}
  101. labels:
  102. - org.hotio.pullio.update=${PULLIO_UPDATE}
  103. - org.hotio.pullio.notify=${PULLIO_NOTIFY}
  104. - org.hotio.pullio.discord.webhook=${PULLIO_DISCORD_WEBHOOK}
  105. ports:
  106. - 9696:9696
  107. environment:
  108. - PUID=${PUID}
  109. - PGID=${PGID}
  110. - TZ=${TZ}
  111. - UMASK=002
  112. - ARGS=
  113. volumes:
  114. - ${DOCKERCONFDIR}/prowlarr:/config:rw
  115.  
  116. # devices: # optional: if you have a Syno with an Intel CPU with quicksync and want hardware transcoding (only with Plex Pass)
  117. uncomment this line.
  118. # - /dev/dri:/dev/dri # optional: if you have a Syno with an Intel CPU with quicksync and want hardware transcoding (only with Plex Pass)
  119. uncomment this line.
  120. # tmpfs: # optional: if you have a Syno with enough RAM, you can uncomment this line to enable transcoding in RAM. uncomment
  121. this line.
  122. # - /transcode # optional: if you have a Syno with enough RAM, you can uncomment this line to enable transcoding in RAM. uncomment
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement