forked from laradock/laradock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request laradock#6 from laradock/master
pull-up
- Loading branch information
Showing
94 changed files
with
18,494 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sh text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
FROM ubuntu:20.04 | ||
|
||
ARG CLICKHOUSE_VERSION=20.9.4.76 | ||
ARG CLICKHOUSE_GOSU_VERSION=1.10 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install --yes --no-install-recommends \ | ||
apt-transport-https \ | ||
dirmngr \ | ||
gnupg \ | ||
&& mkdir -p /etc/apt/sources.list.d \ | ||
&& apt-key adv --keyserver keyserver.ubuntu.com --recv E0C56BD4 \ | ||
&& echo "deb http://repo.yandex.ru/clickhouse/deb/stable/ main/" > /etc/apt/sources.list.d/clickhouse.list \ | ||
&& apt-get update \ | ||
&& env DEBIAN_FRONTEND=noninteractive \ | ||
apt-get install --allow-unauthenticated --yes --no-install-recommends \ | ||
clickhouse-common-static=$CLICKHOUSE_VERSION \ | ||
clickhouse-client=$CLICKHOUSE_VERSION \ | ||
clickhouse-server=$CLICKHOUSE_VERSION \ | ||
locales \ | ||
tzdata \ | ||
wget \ | ||
&& rm -rf \ | ||
/var/lib/apt/lists/* \ | ||
/var/cache/debconf \ | ||
/tmp/* \ | ||
&& apt-get clean | ||
|
||
ADD https://github.com/tianon/gosu/releases/download/$CLICKHOUSE_GOSU_VERSION/gosu-amd64 /bin/gosu | ||
|
||
RUN locale-gen en_US.UTF-8 | ||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US:en | ||
ENV LC_ALL en_US.UTF-8 | ||
|
||
RUN mkdir /docker-entrypoint-initdb.d | ||
|
||
COPY docker_related_config.xml /etc/clickhouse-server/config.d/ | ||
COPY config.xml /etc/clickhouse-server/config.xml | ||
COPY entrypoint.sh /entrypoint.sh | ||
|
||
RUN chmod +x \ | ||
/entrypoint.sh \ | ||
/bin/gosu | ||
|
||
EXPOSE 9000 8123 9009 | ||
VOLUME /var/lib/clickhouse | ||
|
||
ENV CLICKHOUSE_CONFIG /etc/clickhouse-server/config.xml | ||
ENV CLICKHOUSE_USER ${CLICKHOUSE_USER} | ||
ENV CLICKHOUSE_PASSWORD ${CLICKHOUSE_PASSWORD} | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
Oops, something went wrong.