diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 223c4fbe..ce9dd4ff 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -10,4 +10,5 @@ | `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 | +| `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 901 B | 2025-11-21 | diff --git a/docs/public/install-scripts/sonarr.json b/docs/public/install-scripts/sonarr.json new file mode 100644 index 00000000..77ade899 --- /dev/null +++ b/docs/public/install-scripts/sonarr.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(Shows)", + "network_share": true + }, + "$LOCATION(Downloads)/qbittorrent", + "$LOCATION(ApplicationsPerformance)/sonarr/config" + ], + "app_values": { + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/sonarr/config)", + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Downloads)/qbittorrent, /config/Downloads)", + "$MOUNTED_HOST_PATH($LOCATION(Shows), /shows)" + ] + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } + } +}