2018-05-30 19:26:36 +00:00
|
|
|
FROM ubuntu:18.04
|
2016-06-15 16:50:33 +00:00
|
|
|
|
2018-03-16 23:11:15 +00:00
|
|
|
ARG repository="deb http://repo.yandex.ru/clickhouse/deb/stable/ main/"
|
2018-11-29 16:17:29 +00:00
|
|
|
ARG version=18.14.17
|
2018-09-21 22:00:57 +00:00
|
|
|
ARG gosu_ver=1.10
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get install --yes --no-install-recommends \
|
|
|
|
apt-transport-https \
|
|
|
|
dirmngr \
|
|
|
|
gnupg \
|
|
|
|
&& mkdir -p /etc/apt/sources.list.d \
|
|
|
|
&& apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 \
|
|
|
|
&& echo $repository > /etc/apt/sources.list.d/clickhouse.list \
|
|
|
|
&& apt-get update \
|
|
|
|
&& env DEBIAN_FRONTEND=noninteractive \
|
|
|
|
apt-get install --allow-unauthenticated --yes --no-install-recommends \
|
|
|
|
clickhouse-common-static=$version \
|
|
|
|
clickhouse-server=$version \
|
|
|
|
libgcc-7-dev \
|
|
|
|
&& rm -rf \
|
|
|
|
/var/lib/apt/lists/* \
|
|
|
|
/var/cache/debconf \
|
|
|
|
/tmp/* \
|
|
|
|
&& apt-get clean
|
2016-06-15 16:50:33 +00:00
|
|
|
|
2018-11-28 19:55:34 +00:00
|
|
|
RUN mkdir /docker-entrypoint-initdb.d
|
|
|
|
|
2018-01-22 07:51:27 +00:00
|
|
|
COPY docker_related_config.xml /etc/clickhouse-server/config.d/
|
2018-09-21 22:00:57 +00:00
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ADD https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64 /bin/gosu
|
|
|
|
|
|
|
|
RUN chmod +x \
|
|
|
|
/entrypoint.sh \
|
|
|
|
/bin/gosu
|
2016-06-15 16:50:33 +00:00
|
|
|
|
|
|
|
EXPOSE 9000 8123 9009
|
2017-02-28 17:12:45 +00:00
|
|
|
VOLUME /var/lib/clickhouse
|
2016-06-15 16:50:33 +00:00
|
|
|
|
|
|
|
ENV CLICKHOUSE_CONFIG /etc/clickhouse-server/config.xml
|
|
|
|
|
2018-09-21 22:00:57 +00:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
|