Merge pull request #8 from BamX/master

Add Dockerfiles for client and server
This commit is contained in:
alexey-milovidov 2016-06-15 20:01:00 +03:00 committed by GitHub
commit 04942e9c09
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,14 @@
FROM ubuntu:14.04
ENV CLICKHOUSE_VERSION 1.1.53981
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 && \
apt-get install --force-yes -y clickhouse-client="$CLICKHOUSE_VERSION" && \
rm -rf /var/lib/apt/lists/* /var/cache/
ENV CLICKHOUSE_HOST localhost
ENV CLICKHOUSE_PORT 9000
CMD ["sh", "-c", "clickhouse-client --host ${CLICKHOUSE_HOST} --port ${CLICKHOUSE_PORT}"]

View File

@ -0,0 +1,19 @@
FROM ubuntu:14.04
ENV CLICKHOUSE_VERSION 1.1.53981
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 && \
apt-get install --force-yes -y clickhouse-server-common="$CLICKHOUSE_VERSION" && \
rm -rf /var/lib/apt/lists/* /var/cache/
RUN chown -R metrika /etc/clickhouse-server/
USER metrika
EXPOSE 9000 8123 9009
ENV FILE_DESCRIPTORS_LIMIT 262144
ENV CLICKHOUSE_CONFIG /etc/clickhouse-server/config.xml
CMD ["sh", "-c", "ulimit -n ${FILE_DESCRIPTORS_LIMIT} && /usr/bin/clickhouse-server --config=${CLICKHOUSE_CONFIG}"]