mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-08 01:31:55 +00:00
15 lines
356 B
YAML
15 lines
356 B
YAML
version: "2"
|
|
services:
|
|
clickhouse:
|
|
image: clickhouse/clickhouse-server:22.5.2
|
|
container_name: "testclickhouse"
|
|
environment:
|
|
CLICKHOUSE_USER: clickhouseuser
|
|
CLICKHOUSE_PASSWORD: clickhousepass
|
|
CLICKHOUSE_DB: clickhousedb
|
|
ports:
|
|
- "28123:8123"
|
|
- "9000"
|
|
volumes:
|
|
- ./setup:/docker-entrypoint-initdb.d
|