mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
f2b572a17f
I cannot run container on the latest Docker (1.12.0, build 8eab29e) because of error. The latest docker supports setting ulimits through the command line --ulimit nofile=262144:262144.
17 lines
562 B
Docker
17 lines
562 B
Docker
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 && \
|
|
apt-get install --allow-unauthenticated -y clickhouse-server-common && \
|
|
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}"]
|