Docker container that's intended for testing and development of tesseract and clickhouse related technologies.
- Clone the repository
$ git clone [email protected]:Datawheel/fruity-clickhouse.git
- Build the docker image
$ docker build fruity-clickhouse -t fruity
- Create a docker container
$ docker run -d --name fruity-local -p 8123:8123 -p 9000:9000 --ulimit nofile=262144:262144 fruity
Add a platform flag on the Dockerfile
-FROM docker.io/library/clickhouse:25.1
+FROM --platform=linux/amd64 docker.io/library/clickhouse:25.1