diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 66a848cb..bec2587a 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -20,4 +20,5 @@ | `scrutiny` | [scrutiny.json](/install-scripts/scrutiny.json) | 1.3 KB | 2026-03-15 | | `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 | +| `tandoor-recipes` | [tandoor-recipes.json](/install-scripts/tandoor-recipes.json) | 1.6 KB | 2026-05-01 | diff --git a/docs/public/install-scripts/tandoor-recipes.json b/docs/public/install-scripts/tandoor-recipes.json new file mode 100644 index 00000000..7924a805 --- /dev/null +++ b/docs/public/install-scripts/tandoor-recipes.json @@ -0,0 +1,55 @@ +{ + "version": 4, + "script": { + "version": "1.0.0", + "changeLog": "Initial install script" + }, + "requirements": { + "locations": ["ApplicationsPerformance, ApplicationsCapacity"], + "specifications": ["2CORE", "256MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30290] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + { "path": "$LOCATION(ApplicationsPerformance)/tandoor_recipes/postgres", "owner": { "user": "netdata", "group": "docker" }, "snapshot": { "id": "db" } }, + { "path": "$LOCATION(ApplicationsPerformance)/tandoor_recipes/static", "snapshot": { "id": "data" } }, + { "path": "$LOCATION(ApplicationsCapacity)/tandoor_recipes/media", "snapshot": { "id": "data" } } + ], + "app_values": { + "recipes": { + "db_password": "$RANDOM_STRING(7)", + "secret_key": "$RANDOM_STRING(7)", + "additional_envs": [ + { + "name": "GUNICORN_MEDIA", + "value": "1" + } + ] + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30290 + } + }, + "storage": { + "staticfiles": "$HOST_PATH($LOCATION(ApplicationsPerformance)/tandoor_recipes/static)", + "mediafiles": "$HOST_PATH($LOCATION(ApplicationsCapacity)/tandoor_recipes/media)", + "postgres_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/tandoor_recipes/postgres)" + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(10%, 2048)" + } + } + } +} \ No newline at end of file