diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index f4a40ff2..223c4fbe 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -9,4 +9,5 @@ | `plex` | [plex.json](/install-scripts/plex.json) | 3.2 KB | 2025-11-17 | | `prowlarr` | [prowlarr.json](/install-scripts/prowlarr.json) | 443 B | 2025-11-21 | | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 828 B | 2025-11-21 | +| `radarr` | [radarr.json](/install-scripts/radarr.json) | 904 B | 2025-11-21 | diff --git a/docs/public/install-scripts/radarr.json b/docs/public/install-scripts/radarr.json new file mode 100644 index 00000000..18ca9915 --- /dev/null +++ b/docs/public/install-scripts/radarr.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + { + "path": "$LOCATION(Downloads)", + "network_share": true + }, + { + "path": "$LOCATION(Movies)", + "network_share": true + }, + "$LOCATION(Downloads)/qbittorrent", + "$LOCATION(ApplicationsPerformance)/radarr/config" + ], + "app_values": { + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/radarr/config)", + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Downloads)/qbittorrent, /config/Downloads)", + "$MOUNTED_HOST_PATH($LOCATION(Movies), /movies)" + ] + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } + } +}