Add Baserow, LabCA, and LobeHub installers

Add container templates, install scripts, and metadata for Baserow, LabCA, and LobeHub. New ct/*.sh scripts provide container build and update logic (fetching GitHub releases, backup/restore, build steps). New install/*.sh scripts install dependencies, configure PostgreSQL/Node/uv/PNPM as needed, run migrations, and create systemd services for each app. Corresponding json/*.json entries add metadata (ports, resource defaults, docs, and notes) for UI/registry integration.
This commit is contained in:
CanbiZ (MickLesk)
2026-03-25 17:34:25 +01:00
parent 864761104c
commit 558c27ec88
9 changed files with 679 additions and 0 deletions

46
json/baserow.json Normal file
View File

@@ -0,0 +1,46 @@
{
"name": "Baserow",
"slug": "baserow",
"categories": [8],
"date_created": "2026-03-25",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 3000,
"documentation": "https://baserow.io/docs/index",
"website": "https://baserow.io/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/baserow.webp",
"config_path": "/opt/baserow/.env",
"description": "Baserow is an open-source no-code database platform for building databases, applications, automations, and AI agents without code.",
"install_methods": [
{
"type": "default",
"script": "ct/baserow.sh",
"resources": {
"cpu": 4,
"ram": 4096,
"hdd": 15,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "First visit will prompt you to create an admin account.",
"type": "info"
},
{
"text": "Building from source requires significant resources and may take 10+ minutes.",
"type": "warning"
},
{
"text": "Update BASEROW_PUBLIC_URL in /opt/baserow/.env if accessing from a different hostname.",
"type": "info"
}
]
}

42
json/labca.json Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "LabCA",
"slug": "labca",
"categories": [6],
"date_created": "2026-03-25",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 3000,
"documentation": "https://github.com/hakwerk/labca",
"website": "https://github.com/hakwerk/labca",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/labca.webp",
"config_path": "/etc/labca/config.json",
"description": "LabCA is a standalone web GUI for managing ACME certificate authorities like step-ca, providing dashboard, certificate overview, and admin management.",
"install_methods": [
{
"type": "default",
"script": "ct/labca.sh",
"resources": {
"cpu": 1,
"ram": 512,
"hdd": 2,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "On first access, you will be prompted to create an admin account and configure the database connection to your step-ca instance.",
"type": "info"
},
{
"text": "LabCA standalone requires a MySQL-backed step-ca instance to connect to.",
"type": "warning"
}
]
}

46
json/lobehub.json Normal file
View File

@@ -0,0 +1,46 @@
{
"name": "LobeHub",
"slug": "lobehub",
"categories": [20],
"date_created": "2026-03-25",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 3210,
"documentation": "https://lobehub.com/docs",
"website": "https://lobehub.com/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/lobechat.webp",
"config_path": "/opt/lobehub/.env",
"description": "LobeHub is an open-source AI chat platform supporting multiple AI providers, plugins, and knowledge base with a modern interface.",
"install_methods": [
{
"type": "default",
"script": "ct/lobehub.sh",
"resources": {
"cpu": 4,
"ram": 8192,
"hdd": 15,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Configure your AI provider API keys in /opt/lobehub/.env (e.g. OPENAI_API_KEY).",
"type": "info"
},
{
"text": "Building from source requires significant resources and may take 10+ minutes.",
"type": "warning"
},
{
"text": "Update APP_URL in /opt/lobehub/.env if accessing from a different hostname.",
"type": "info"
}
]
}