ClickHouse/docker/client/1.1.53981/Dockerfile

15 lines
529 B
Docker
Raw Normal View History

2016-06-15 16:50:33 +00:00
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}"]