Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/features/apps/install-scripts/curated/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
| `qbittorrent` | [qbittorrent.json](/install-scripts/qbittorrent.json) | 1.0 KB | 2025-12-04 |
| `radarr` | [radarr.json](/install-scripts/radarr.json) | 1.2 KB | 2025-12-04 |
| `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.3 KB | 2026-03-15 |
| `scrypted` | [scrypted.json](/install-scripts/scrypted.json) | 1.8 KB | 2026-03-31 |
| `sonarr` | [sonarr.json](/install-scripts/sonarr.json) | 1.2 KB | 2025-12-04 |
| `syncthing` | [syncthing.json](/install-scripts/syncthing.json) | 2.1 KB | 2026-03-15 |
<!-- curated:index:end -->
75 changes: 75 additions & 0 deletions docs/public/install-scripts/scrypted.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"version": 3,
"script": {
"version": "1.0.0",
"changeLog": "Initial Script"
},
"installation_questions": [
{
"question": "What kind of installation would you like?",
"description": "Select the nvidia optimized image if you have an nvidia GPU installed.",
"type": "select",
"key": "image_selector",
"required": true,
"options": [
{
"text": "Yes, I want the light weight version",
"value": "lite_image"
},
{
"text": "No, I want the full version",
"value": "image"
},
{
"text": "I would like the nvidia optimized image",
"value": "nvidia_image"
}
],
"default": "image"
}
],
"requirements": {
"locations": [],
"specifications": ["2CORE", "256MB"],
"permissions": ["READ_WRITE_LOCATIONS"],
"ports": [30130, 30131]
},
"ensure_directories_exists": [
{
"path": "$LOCATION(ApplicationsPerformance)",
"network_share": true
},
{
"path": "$LOCATION(Documents)",
"network_share": true
},
"$LOCATION(Documents)/scrypted",
"$LOCATION(ApplicationsPerformance)/scrypted/server"
],
"app_values": {
"scrypted": {
"image_selector": "$QUESTION(image_selector)"
},
"storage": {
"nvr": "$HOST_PATH($LOCATION(Documents)/scrypted)",
"server": "$HOST_PATH($LOCATION(ApplicationsPerformance)/scrypted/server)"
},
"network": {
"insecure_port": {
"bind_mode": "published",
"port_number": 30130
},
"secure_port": {
"bind_mode": "published",
"port_number": 30131
}
},
"resources": {
"limits": {
"cpus": 2,
"memory": "$MEMORY(10%, 2048)"
},
"gpus": "$GPU_CONFIG()"
}
}
}
Loading