Introduce ClickHouse support by adding a container template (ct/clickhouse.sh), an installer script (install/clickhouse-install.sh) and app metadata (json/clickhouse.json). The installer configures ClickHouse to listen on 0.0.0.0, restarts the service, and performs OS update, networking checks, MOTD/customization and cleanup. Metadata declares default resources (2 CPU, 4GB RAM, 10GB disk), interface port 8123, documentation/website links, and a warning about the default user having no password.
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "ClickHouse",
|
|
"slug": "clickhouse",
|
|
"categories": [8],
|
|
"date_created": "2026-04-14",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 8123,
|
|
"documentation": "https://clickhouse.com/docs/",
|
|
"website": "https://clickhouse.com/",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/clickhouse.webp",
|
|
"description": "ClickHouse is an open-source, high-performance columnar database management system designed for real-time analytics and data processing using SQL queries.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/clickhouse.sh",
|
|
"config_path": "/etc/clickhouse-server/config.xml",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 4096,
|
|
"hdd": 10,
|
|
"os": "Debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": "default",
|
|
"password": null
|
|
},
|
|
"notes": [
|
|
{
|
|
"text": "The default user 'default' has no password. Set a password for production use.",
|
|
"type": "warning"
|
|
}
|
|
]
|
|
}
|