mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
26 lines
940 B
Docker
26 lines
940 B
Docker
FROM ubuntu:18.04
|
|
|
|
ARG repository="deb http://repo.yandex.ru/clickhouse/deb/stable/ main/"
|
|
ARG version=\*
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y apt-transport-https dirmngr && \
|
|
mkdir -p /etc/apt/sources.list.d && \
|
|
apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 && \
|
|
echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \
|
|
apt-get update && \
|
|
env DEBIAN_FRONTEND=noninteractive apt-get install --allow-unauthenticated -y clickhouse-server=$version clickhouse-common-static=$version libgcc-7-dev && \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
|
|
apt-get clean
|
|
|
|
COPY docker_related_config.xml /etc/clickhouse-server/config.d/
|
|
RUN chown -R clickhouse /etc/clickhouse-server/
|
|
|
|
USER clickhouse
|
|
EXPOSE 9000 8123 9009
|
|
VOLUME /var/lib/clickhouse
|
|
|
|
ENV CLICKHOUSE_CONFIG /etc/clickhouse-server/config.xml
|
|
|
|
ENTRYPOINT exec /usr/bin/clickhouse-server --config=${CLICKHOUSE_CONFIG}
|