mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Merge pull request #63610 from ClickHouse/backport/24.3/63400
Backport #63400 to 24.3: The Dockerfile is reviewed by docker-official
This commit is contained in:
commit
9bbdfc4d53
@ -1,11 +1,14 @@
|
|||||||
FROM ubuntu:20.04
|
FROM ubuntu:20.04
|
||||||
|
|
||||||
# see https://github.com/moby/moby/issues/4032#issuecomment-192327844
|
# see https://github.com/moby/moby/issues/4032#issuecomment-192327844
|
||||||
|
# It could be removed after we move on a version 23:04+
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
# ARG for quick switch to a given ubuntu mirror
|
# ARG for quick switch to a given ubuntu mirror
|
||||||
ARG apt_archive="http://archive.ubuntu.com"
|
ARG apt_archive="http://archive.ubuntu.com"
|
||||||
|
|
||||||
|
# We shouldn't use `apt upgrade` to not change the upstream image. It's updated biweekly
|
||||||
|
|
||||||
# user/group precreated explicitly with fixed uid/gid on purpose.
|
# user/group precreated explicitly with fixed uid/gid on purpose.
|
||||||
# It is especially important for rootless containers: in that case entrypoint
|
# It is especially important for rootless containers: in that case entrypoint
|
||||||
# can't do chown and owners of mounted volumes should be configured externally.
|
# can't do chown and owners of mounted volumes should be configured externally.
|
||||||
@ -16,13 +19,11 @@ RUN sed -i "s|http://archive.ubuntu.com|${apt_archive}|g" /etc/apt/sources.list
|
|||||||
&& groupadd -r clickhouse --gid=101 \
|
&& groupadd -r clickhouse --gid=101 \
|
||||||
&& useradd -r -g clickhouse --uid=101 --home-dir=/var/lib/clickhouse --shell=/bin/bash clickhouse \
|
&& useradd -r -g clickhouse --uid=101 --home-dir=/var/lib/clickhouse --shell=/bin/bash clickhouse \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& apt-get upgrade -yq \
|
|
||||||
&& apt-get install --yes --no-install-recommends \
|
&& apt-get install --yes --no-install-recommends \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
locales \
|
locales \
|
||||||
tzdata \
|
tzdata \
|
||||||
wget \
|
wget \
|
||||||
&& apt-get clean \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
&& rm -rf /var/lib/apt/lists/* /var/cache/debconf /tmp/*
|
||||||
|
|
||||||
ARG REPO_CHANNEL="stable"
|
ARG REPO_CHANNEL="stable"
|
||||||
@ -30,6 +31,9 @@ ARG REPOSITORY="deb [signed-by=/usr/share/keyrings/clickhouse-keyring.gpg] https
|
|||||||
ARG VERSION="24.2.2.71"
|
ARG VERSION="24.2.2.71"
|
||||||
ARG PACKAGES="clickhouse-client clickhouse-server clickhouse-common-static"
|
ARG PACKAGES="clickhouse-client clickhouse-server clickhouse-common-static"
|
||||||
|
|
||||||
|
#docker-official-library:off
|
||||||
|
# The part between `docker-official-library` tags is related to our builds
|
||||||
|
|
||||||
# set non-empty deb_location_url url to create a docker image
|
# set non-empty deb_location_url url to create a docker image
|
||||||
# from debs created by CI build, for example:
|
# from debs created by CI build, for example:
|
||||||
# docker build . --network host --build-arg version="21.4.1.6282" --build-arg deb_location_url="https://..." -t ...
|
# docker build . --network host --build-arg version="21.4.1.6282" --build-arg deb_location_url="https://..." -t ...
|
||||||
@ -80,19 +84,22 @@ RUN if [ -n "${single_binary_location_url}" ]; then \
|
|||||||
&& rm -rf /tmp/* ; \
|
&& rm -rf /tmp/* ; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# The rest is the same in the official docker and in our build system
|
||||||
|
#docker-official-library:on
|
||||||
|
|
||||||
# A fallback to installation from ClickHouse repository
|
# A fallback to installation from ClickHouse repository
|
||||||
RUN if ! clickhouse local -q "SELECT ''" > /dev/null 2>&1; then \
|
RUN if ! clickhouse local -q "SELECT ''" > /dev/null 2>&1; then \
|
||||||
apt-get update \
|
apt-get update \
|
||||||
&& apt-get install --yes --no-install-recommends \
|
&& apt-get install --yes --no-install-recommends \
|
||||||
apt-transport-https \
|
apt-transport-https \
|
||||||
ca-certificates \
|
|
||||||
dirmngr \
|
dirmngr \
|
||||||
gnupg2 \
|
gnupg2 \
|
||||||
&& mkdir -p /etc/apt/sources.list.d \
|
&& mkdir -p /etc/apt/sources.list.d \
|
||||||
&& GNUPGHOME=$(mktemp -d) \
|
&& GNUPGHOME=$(mktemp -d) \
|
||||||
&& GNUPGHOME="$GNUPGHOME" gpg --no-default-keyring \
|
&& GNUPGHOME="$GNUPGHOME" gpg --batch --no-default-keyring \
|
||||||
--keyring /usr/share/keyrings/clickhouse-keyring.gpg \
|
--keyring /usr/share/keyrings/clickhouse-keyring.gpg \
|
||||||
--keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 8919F6BD2B48D754 \
|
--keyserver hkp://keyserver.ubuntu.com:80 \
|
||||||
|
--recv-keys 3a9ea1193a97b548be1457d48919f6bd2b48d754 \
|
||||||
&& rm -rf "$GNUPGHOME" \
|
&& rm -rf "$GNUPGHOME" \
|
||||||
&& chmod +r /usr/share/keyrings/clickhouse-keyring.gpg \
|
&& chmod +r /usr/share/keyrings/clickhouse-keyring.gpg \
|
||||||
&& echo "${REPOSITORY}" > /etc/apt/sources.list.d/clickhouse.list \
|
&& echo "${REPOSITORY}" > /etc/apt/sources.list.d/clickhouse.list \
|
||||||
@ -127,7 +134,6 @@ RUN mkdir /docker-entrypoint-initdb.d
|
|||||||
|
|
||||||
COPY docker_related_config.xml /etc/clickhouse-server/config.d/
|
COPY docker_related_config.xml /etc/clickhouse-server/config.d/
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
RUN chmod +x /entrypoint.sh
|
|
||||||
|
|
||||||
EXPOSE 9000 8123 9009
|
EXPOSE 9000 8123 9009
|
||||||
VOLUME /var/lib/clickhouse
|
VOLUME /var/lib/clickhouse
|
||||||
|
@ -24,6 +24,7 @@ For more information and documentation see https://clickhouse.com/.
|
|||||||
## How to use this image
|
## How to use this image
|
||||||
|
|
||||||
### start server instance
|
### start server instance
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse/clickhouse-server
|
docker run -d --name some-clickhouse-server --ulimit nofile=262144:262144 clickhouse/clickhouse-server
|
||||||
```
|
```
|
||||||
@ -66,9 +67,7 @@ docker run -d -p 18123:8123 -p19000:9000 --name some-clickhouse-server --ulimit
|
|||||||
echo 'SELECT version()' | curl 'http://localhost:18123/' --data-binary @-
|
echo 'SELECT version()' | curl 'http://localhost:18123/' --data-binary @-
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
`22.6.3.35`
|
||||||
22.6.3.35
|
|
||||||
```
|
|
||||||
|
|
||||||
or by allowing the container to use [host ports directly](https://docs.docker.com/network/host/) using `--network=host` (also allows achieving better network performance):
|
or by allowing the container to use [host ports directly](https://docs.docker.com/network/host/) using `--network=host` (also allows achieving better network performance):
|
||||||
|
|
||||||
@ -77,16 +76,14 @@ docker run -d --network=host --name some-clickhouse-server --ulimit nofile=26214
|
|||||||
echo 'SELECT version()' | curl 'http://localhost:8123/' --data-binary @-
|
echo 'SELECT version()' | curl 'http://localhost:8123/' --data-binary @-
|
||||||
```
|
```
|
||||||
|
|
||||||
```
|
`22.6.3.35`
|
||||||
22.6.3.35
|
|
||||||
```
|
|
||||||
|
|
||||||
### Volumes
|
### Volumes
|
||||||
|
|
||||||
Typically you may want to mount the following folders inside your container to achieve persistency:
|
Typically you may want to mount the following folders inside your container to achieve persistency:
|
||||||
|
|
||||||
* `/var/lib/clickhouse/` - main folder where ClickHouse stores the data
|
- `/var/lib/clickhouse/` - main folder where ClickHouse stores the data
|
||||||
* `/var/log/clickhouse-server/` - logs
|
- `/var/log/clickhouse-server/` - logs
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
docker run -d \
|
docker run -d \
|
||||||
@ -97,9 +94,9 @@ docker run -d \
|
|||||||
|
|
||||||
You may also want to mount:
|
You may also want to mount:
|
||||||
|
|
||||||
* `/etc/clickhouse-server/config.d/*.xml` - files with server configuration adjustments
|
- `/etc/clickhouse-server/config.d/*.xml` - files with server configuration adjustments
|
||||||
* `/etc/clickhouse-server/users.d/*.xml` - files with user settings adjustments
|
- `/etc/clickhouse-server/users.d/*.xml` - files with user settings adjustments
|
||||||
* `/docker-entrypoint-initdb.d/` - folder with database initialization scripts (see below).
|
- `/docker-entrypoint-initdb.d/` - folder with database initialization scripts (see below).
|
||||||
|
|
||||||
### Linux capabilities
|
### Linux capabilities
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user