Feat:Added the Clickhouse Template -#491 (#501)

This commit is contained in:
Harikrishnan Dhanasekaran
2025-11-08 12:08:00 +05:30
committed by GitHub
parent dd5d81fc46
commit 4403b5fffb
4 changed files with 51 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,15 @@
services:
clickhouse:
image: clickhouse/clickhouse-server:latest
restart: unless-stopped
environment:
- CLICKHOUSE_USER=${CLICKHOUSE_USER}
- CLICKHOUSE_PASSWORD=${CLICKHOUSE_PASSWORD}
volumes:
- clickhouse-data:/var/lib/clickhouse
- clickhouse-logs:/var/log/clickhouse-server
volumes:
clickhouse-data:
clickhouse-logs:

View File

@@ -0,0 +1,17 @@
[variables]
main_domain = "${domain}"
clickhouse_user = "default"
clickhouse_password = "${password:32}"
[config]
mounts = []
[[config.domains]]
serviceName = "clickhouse"
port = 8123
host = "${main_domain}"
[config.env]
CLICKHOUSE_USER = "${clickhouse_user}"
CLICKHOUSE_PASSWORD = "${clickhouse_password}"

View File

@@ -1190,6 +1190,25 @@
"content-management"
]
},
{
"id": "clickhouse",
"name": "ClickHouse",
"version": "latest",
"description": "ClickHouse is an open-source column-oriented DBMS (columnar database management system) for online analytical processing (OLAP) that allows users to generate analytical reports using SQL queries in real-time. ClickHouse works 100-1000x faster than traditional database management systems, and processes hundreds of millions to over a billion rows and tens of gigabytes of data per server per second.",
"logo": "clickhouse_logo.png",
"links": {
"github": "https://github.com/ClickHouse/ClickHouse",
"website": "https://clickhouse.com/",
"docs": "https://clickhouse.com/docs"
},
"tags": [
"self-hosted",
"open-source",
"database",
"olap",
"analytics"
]
},
{
"id": "cloud9",
"name": "Cloud9",