mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
Feat:Added the Clickhouse Template -#491 (#501)
This commit is contained in:
committed by
GitHub
parent
dd5d81fc46
commit
4403b5fffb
BIN
blueprints/clickhouse/clickhouse_logo.png
Normal file
BIN
blueprints/clickhouse/clickhouse_logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.8 KiB |
15
blueprints/clickhouse/docker-compose.yml
Normal file
15
blueprints/clickhouse/docker-compose.yml
Normal 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:
|
||||
|
||||
17
blueprints/clickhouse/template.toml
Normal file
17
blueprints/clickhouse/template.toml
Normal 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}"
|
||||
|
||||
19
meta.json
19
meta.json
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user