From 12771173a703c93b96c4df254a82fe137fdce45e Mon Sep 17 00:00:00 2001 From: Mkayyyyyy Date: Fri, 21 Nov 2025 18:55:55 -0500 Subject: [PATCH] Added Radarr Added Radarr App --- .../apps/install-scripts/curated/index.md | 1 + docs/public/install-scripts/radarr.json | 38 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 docs/public/install-scripts/radarr.json diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 24f79102..302d9817 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -8,4 +8,5 @@ | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.1 KB | 2025-11-17 | | `plex` | [plex.json](/install-scripts/plex.json) | 3.2 KB | 2025-11-17 | | `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 828 B | 2025-11-17 | +| `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)" + } + } + } +}