mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
25 lines
863 B
Docker
25 lines
863 B
Docker
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,<listen_host>127.0.0.1</listen_host>,<listen_host>::</listen_host>,' /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}
|