提交 04942e9c 编写于 作者: A alexey-milovidov 提交者: GitHub

Merge pull request #8 from BamX/master

Add Dockerfiles for client and server
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}"]
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}"]
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册