The official clickhouse docker image.
Maintained by: openEuler CloudNative SIG.
Where to get help: openEuler CloudNative SIG, openEuler.
Current clickhouse docker images are built on the openEuler. This repository is free to use and exempted from per-user rate limits.
ClickHouse is an open-source column-oriented database management system that allows generating analytical data reports in real-time.
Learn more about clickhouse at https://clickhouse.com/.
The tag of each clickhouse docker image is consist of the version of clickhouse and the version of basic image. The details are as follows
| Tag | Currently | Architectures |
|---|---|---|
| 26.9.3.38-oe2403sp4 | clickhouse 26.9.3.38 on openEuler 24.03-LTS-SP4 | amd64, arm64 |
| 26.7.12.6-oe2403sp4 | clickhouse 26.7.12.6 on openEuler 24.03-LTS-SP4 | amd64, arm64 |
| 26.7.7.92-oe2403sp4 | clickhouse 26.7.7.92 on openEuler 24.03-LTS-SP4 | amd64, arm64 |
| 25.3.1.2703-oe2403sp1 | Clickhouse 25.3.1.2703 on openEuler 24.03-LTS-SP1 | amd64, arm64 |
| 25.7.5.34-oe2403sp2 | Clickhouse 25.7.5.34 on openEuler 24.03-LTS-SP2 | amd64, arm64 |
| 25.7.5.34-oe2403sp4 | Clickhouse 25.7.5.34 on openEuler 24.03-LTS-SP4 | amd64, arm64 |
Start server instance
docker run -d --name my-clickhouse-server --ulimit nofile=262144:262144 openeuler/clickhouse:latest
By default, ClickHouse will be accessible only via the Docker network. See the networking section below.
By default, starting above server instance will be run as the default user without password.
Connect to it from a native client
docker run -it --rm --network=container:my-clickhouse-server --entrypoint clickhouse-client clickhouse
# OR
docker exec -it my-clickhouse-server clickhouse-client
More information about the ClickHouse client
Connect to it using curl
echo "SELECT 'Hello, ClickHouse!'" | docker run -i --rm --network=container:my-clickhouse-server buildpack-deps:curl curl 'http://localhost:8123/?query=' -s --data-binary @-
Stop the container
docker stop my-clickhouse-server
docker rm my-clickhouse-server
If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.
Content type
Image
Digest
sha256:56a84bcb9…
Size
567.8 MB
Last updated
about 12 hours ago
docker pull openeuler/clickhousePulls:
61
Last week