9951 explained code solutions for 126 technologies


dockerRun official Clickhouse docker container


docker run -d -p 8123:8123 -p 9000:9000 yandex/clickhouse-serverctrl + c
run

starts specified container

-d

runs container as a background daemon

-p 8123:8123

expose HTTP 8123 port to the same local port

-p 9000:9000

expose Clickhouse 9000 port to the same local port

yandex/clickhouse-server

name of the official Clickhouse docker image