Skip to content

Instantly share code, notes, and snippets.

View arthurpassos's full-sized avatar

Arthur Passos arthurpassos

View GitHub Profile
@arthurpassos
arthurpassos / Dockerfile
Created March 26, 2024 20:20
3 zk ensemble with 3 ch nodes
# Use an official base image, e.g., Ubuntu
FROM ubuntu:latest
# Install any dependencies ClickHouse might need
RUN apt-get update && apt-get install -y \
tzdata \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /opt/clickhouse/
# Use an official base image, e.g., Ubuntu
FROM ubuntu:latest
# Install any dependencies ClickHouse might need
RUN apt-get update && apt-get install -y \
tzdata \
&& rm -rf /var/lib/apt/lists/*
# Create a directory for ClickHouse
WORKDIR /opt/clickhouse