mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
9ec8a576cf
* Docker wip * no tests * fixes * No tests * Fixes * Clean
25 lines
822 B
Docker
25 lines
822 B
Docker
FROM ubuntu:16.04
|
|
|
|
ARG repository="deb https://repo.yandex.ru/clickhouse/xenial/ dists/stable/main/binary-amd64/"
|
|
ARG version=\*
|
|
|
|
RUN apt update && \
|
|
apt install -y apt-transport-https && \
|
|
mkdir -p /etc/apt/sources.list.d && \
|
|
echo $repository | tee /etc/apt/sources.list.d/clickhouse.list && \
|
|
apt update && \
|
|
apt install --allow-unauthenticated -y clickhouse-server-common=$version clickhouse-server-base=$version && \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/debconf && \
|
|
apt clean
|
|
|
|
COPY docker_related_config.xml /etc/clickhouse-server/config.d/
|
|
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}
|