FROM ubuntu:16.04 ARG repository="deb https://repo.yandex.ru/clickhouse/xenial/ dists/stable/main/binary-amd64/" ARG version=\* RUN apt-get update && \ apt-get install -y apt-transport-https && \ mkdir -p /etc/apt/sources.list.d && \ echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \ apt-get update && \ apt-get install --allow-unauthenticated -y clickhouse-server-common=$version && \ rm -rf /var/lib/apt/lists/* /var/cache/debconf && \ apt-get clean RUN sed -i 's,127.0.0.1,::,' /etc/clickhouse-server/config.xml RUN chown -R clickhouse /etc/clickhouse-server/ USER clickhouse EXPOSE 9000 8123 9009 VOLUME /var/lib/clickhouse ENV CLICKHOUSE_CONFIG /etc/clickhouse-server/config.xml ENTRYPOINT exec /usr/bin/clickhouse-server --config=${CLICKHOUSE_CONFIG}