ClickHouse/docker/server/Dockerfile

17 lines
562 B
Docker
Raw Normal View History

2016-06-15 16:50:33 +00:00
FROM ubuntu:14.04
RUN mkdir -p /etc/apt/sources.list.d && \
echo "deb http://repo.yandex.ru/clickhouse/trusty/ dists/stable/main/binary-amd64/" | tee /etc/apt/sources.list.d/clickhouse.list && \
apt-get update && \
2016-06-16 10:24:37 +00:00
apt-get install --allow-unauthenticated -y clickhouse-server-common && \
2016-06-15 16:50:33 +00:00
rm -rf /var/lib/apt/lists/* /var/cache/
RUN chown -R metrika /etc/clickhouse-server/
USER metrika
EXPOSE 9000 8123 9009
ENV CLICKHOUSE_CONFIG /etc/clickhouse-server/config.xml
CMD ["sh", "-c", "/usr/bin/clickhouse-server --config=${CLICKHOUSE_CONFIG}"]