diff --git a/docs/features/apps/install-scripts/curated/index.md b/docs/features/apps/install-scripts/curated/index.md index 66a848c..80c2ccc 100644 --- a/docs/features/apps/install-scripts/curated/index.md +++ b/docs/features/apps/install-scripts/curated/index.md @@ -11,6 +11,7 @@ | `immich` | [immich.json](/install-scripts/immich.json) | 1.7 KB | 2026-03-15 | | `jellyfin` | [jellyfin.json](/install-scripts/jellyfin.json) | 2.2 KB | 2026-03-15 | | `lidarr` | [lidarr.json](/install-scripts/lidarr.json) | 1.4 KB | 2026-03-15 | +| `lubelogger` | [lubelogger.json](/install-scripts/lubelogger.json) | 1.5 KB | 2026-05-01 | | `nextcloud` | [nextcloud.json](/install-scripts/nextcloud.json) | 3.5 KB | 2026-03-15 | | `peanut` | [peanut.json](/install-scripts/peanut.json) | 834 B | 2026-03-15 | | `plex` | [plex.json](/install-scripts/plex.json) | 3.4 KB | 2025-12-12 | diff --git a/docs/public/install-scripts/lubelogger.json b/docs/public/install-scripts/lubelogger.json new file mode 100644 index 0000000..047a6e2 --- /dev/null +++ b/docs/public/install-scripts/lubelogger.json @@ -0,0 +1,61 @@ +{ + "version": 3, + "script": { + "version": "1.0.0", + "changeLog": "Initial Script" + }, + "requirements": { + "locations": ["ApplicationsPerformance", "ApplicationsCapacity"], + "specifications": ["2CORE", "256MB"], + "permissions": ["READ_WRITE_LOCATIONS"], + "ports": [30350] + }, + "ensure_directories_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsCapacity)", + "network_share": true + }, + { + "path": "$LOCATION(ApplicationsPerformance)/lubelogger/postgres", + "posix": true + }, + "$LOCATION(ApplicationsCapacity)/lubelogger/data", + "$LOCATION(ApplicationsPerformance)/lubelogger/keys" + ], + "ensure_permissions_exists": [ + { + "path": "$LOCATION(ApplicationsPerformance)/lubelogger/postgres", + "username": "netdata", + "access": "read", + "posix": { + "groupname": "docker" + } + } + ], + "app_values": { + "lubelogger": { + "db_password": "$RANDOM_STRING(7)" + }, + "network": { + "web_port": { + "bind_mode": "published", + "port_number": 30350 + } + }, + "storage": { + "data": "$HOST_PATH($LOCATION(ApplicationsCapacity)/lubelogger/data)", + "protection_keys": "$HOST_PATH($LOCATION(ApplicationsPerformance)/lubelogger/keys)", + "postgres_data": "$HOST_PATH($LOCATION(ApplicationsPerformance)/lubelogger/postgres)" + }, + "resources": { + "limits": { + "cpus": 2, + "memory": "$MEMORY(5%, 1024)" + } + } + } +} \ No newline at end of file