ClickHouse/docker/server/Dockerfile

22 lines
705 B
Docker
Raw Normal View History

2016-06-15 16:50:33 +00:00
FROM ubuntu:14.04
RUN apt-get update && \
apt-get install -y apt-transport-https && \
mkdir -p /etc/apt/sources.list.d && \
echo "deb https://repo.yandex.ru/clickhouse/trusty/ dists/stable/main/binary-amd64/" | \
tee /etc/apt/sources.list.d/clickhouse.list && \
2016-06-15 16:50:33 +00:00
apt-get update && \
2016-06-16 10:24:37 +00:00
apt-get install --allow-unauthenticated -y clickhouse-server-common && \
2017-03-04 13:55:53 +00:00
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
apt-get clean
2016-06-15 16:50:33 +00:00
2017-02-28 17:12:23 +00:00
RUN chown -R clickhouse /etc/clickhouse-server/
2016-06-15 16:50:33 +00:00
2017-02-28 17:12:23 +00:00
USER clickhouse
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
ENTRYPOINT exec /usr/bin/clickhouse-server --config=${CLICKHOUSE_CONFIG}