diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 18e4e49..2f5bd82 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -6,6 +6,7 @@ | `bazarr` | [bazarr.json](/install-scripts/bazarr.json) | 1.4 KB | 2026-05-15 | | `drawio` | [drawio.json](/install-scripts/drawio.json) | 634 B | 2026-05-15 | | `emby` | [emby.json](/install-scripts/emby.json) | 2.3 KB | 2026-05-15 | +| `game-vault` | [game-vault.json](/install-scripts/game-vault.json) | 2.0 KB | 2026-05-18 | | `handbrake` | [handbrake.json](/install-scripts/handbrake.json) | 1.9 KB | 2026-05-15 | | `home-assistant` | [home-assistant.json](/install-scripts/home-assistant.json) | 1.4 KB | 2026-05-15 | | `immich` | [immich.json](/install-scripts/immich.json) | 1.6 KB | 2026-05-15 | diff --git a/docs/public/install-scripts/game-vault.json b/docs/public/install-scripts/game-vault.json new file mode 100644 index 0000000..47daf94 --- /dev/null +++ b/docs/public/install-scripts/game-vault.json @@ -0,0 +1,64 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial" + }, + "requirements": { + "locations": ["ApplicationsPerformance", "Media"], + "specifications": ["2CORE", "256MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30419, 30420] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + { + "path": "$LOCATION(Media)", + "network_share": true + }, + { "path": "$LOCATION(ApplicationsPerformance)/gamevault/config", "owner": { "user": "apps" }, "snapshot": { "id": "config" } }, + { "path": "$LOCATION(Media)/gamevault/media" }, + { "path": "$LOCATION(Media)/gamevault/saves" }, + { "path": "$LOCATION(Media)/gamevault/plugins" }, + { "path": "$LOCATION(Media)/gamevault/files" }, + { "path": "$LOCATION(ApplicationsPerformance)/gamevault/postgres_data", "owner": { "user": "netdata", "group": "docker" }, "snapshot": { "id": "db" } } + ], + "app_values": { + "gamevault": { + "db_password": "$RANDOM_STRING(7)", + "additional_envs": [] + }, + "network": { + "certificate_id": 1, + "http_port": { + "bind_mode": "published", + "port_number": 30419 + }, + "https_port": { + "bind_mode": "published", + "port_number": 30420 + } + }, + "storage": { + "config": "$HOST_PATH($LOCATION(ApplicationsPerformance)/gamevault/config)", + "media": "$HOST_PATH($LOCATION(Media)/gamevault/media)", + "savefiles": "$HOST_PATH($LOCATION(Media)/gamevault/saves)", + "files": "$HOST_PATH($LOCATION(Media)/gamevault/files)", + "plugins": "$HOST_PATH($LOCATION(Media)/gamevault/plugins)", + "postgres_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/gamevault/postgres_data)" + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 4096)" + } + } + } +} \ No newline at end of file