12 lines
298 B
Docker
12 lines
298 B
Docker
|
FROM clickhouse/clickhouse-server:23.1.3.5
|
||
|
|
||
|
COPY local.xml /etc/clickhouse-server/config.d/local.xml
|
||
|
|
||
|
COPY macros1.xml /etc/clickhouse-server/config.d/macros.xml
|
||
|
|
||
|
COPY wait-for-it.sh /wait-for-it.sh
|
||
|
|
||
|
RUN chmod +x wait-for-it.sh
|
||
|
|
||
|
COPY wait-zookeeper.sh /docker-entrypoint-initdb.d/wait-zookeeper.sh
|