diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 66a848cb..74ee78a4 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -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 | +| `shoko-server` | [shoko-server.json](/install-scripts/shoko-server.json) | 1.5 KB | 2026-03-28 | | `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 | diff --git a/docs/public/install-scripts/shoko-server.json b/docs/public/install-scripts/shoko-server.json new file mode 100644 index 00000000..4a773051 --- /dev/null +++ b/docs/public/install-scripts/shoko-server.json @@ -0,0 +1,68 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "requirements": { + "locations": ["ApplicationsPerformance", "ApplicationsCapacity", "Media", "Movies", "Shows", "Videos"], + "specifications": [ + "2CORE", + "256MB" + ], + "permissions": [ + "READ_WRITE_LOCATIONS" + ], + "ports": [30222] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + { + "path": "$LOCATION(Media)", + "network_share": true + }, + { + "path": "$LOCATION(Movies)", + "network_share": true + }, + { + "path": "$LOCATION(Shows)", + "network_share": true + }, + { + "path": "$LOCATION(Videos)", + "network_share": true + }, + "$LOCATION(ApplicationsPerformance)/shoko_server/config" + ], + "app_values": { + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/shoko_server/config)", + "additional_storage": [ + "$MOUNTED_HOST_PATH($LOCATION(Media), /media)", + "$MOUNTED_HOST_PATH($LOCATION(Movies), /movies)", + "$MOUNTED_HOST_PATH($LOCATION(Shows), /shows)", + "$MOUNTED_HOST_PATH($LOCATION(Videos), /videos)" + ] + } + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30222 + } + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } +} \ No newline at end of file