mirror of
https://github.com/bitnami/containers.git
synced 2026-02-19 22:17:24 +08:00
[bitnami/clickhouse] Release 22.5.4-debian-11-r3 (#7782)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -4,7 +4,7 @@ ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="22.5.4-debian-11-r2" \
|
||||
org.opencontainers.image.ref.name="22.5.4-debian-11-r3" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/clickhouse" \
|
||||
org.opencontainers.image.title="clickhouse" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
@@ -18,7 +18,7 @@ ENV HOME="/" \
|
||||
COPY prebuildfs /
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip procps tar xmlstarlet
|
||||
RUN install_packages ca-certificates curl procps xmlstarlet
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
|
||||
@@ -75,6 +75,6 @@ export CLICKHOUSE_INTERSERVER_HTTP_PORT="${CLICKHOUSE_INTERSERVER_HTTP_PORT:-900
|
||||
# ClickHouse system parameters
|
||||
export CLICKHOUSE_DAEMON_USER="clickhouse"
|
||||
export CLICKHOUSE_DAEMON_GROUP="bitnami"
|
||||
export PATH="${CLICKHOUSE_BASE_DIR}/venv/bin:$PATH"
|
||||
export PATH="${CLICKHOUSE_BASE_DIR}/bin:${BITNAMI_ROOT_DIR}/common/bin:$PATH"
|
||||
|
||||
# Custom environment variables may be defined below
|
||||
|
||||
@@ -83,8 +83,12 @@ clickhouse_copy_mounted_configuration() {
|
||||
# The ClickHouse override directories (etc/conf.d and etc/users.d) do not support subfolders. That means we cannot
|
||||
# copy directly with cp -RL because we need all override xml files to have at the root of these subfolders. In the helm
|
||||
# chart we want to allow overrides from different ConfigMaps and Secrets so we need to use the find command
|
||||
[[ -d "${CLICKHOUSE_MOUNTED_CONF_DIR}/conf.d" ]] && find "${CLICKHOUSE_MOUNTED_CONF_DIR}/conf.d" -type f -exec cp -L {} "${CLICKHOUSE_CONF_DIR}/conf.d" \;
|
||||
[[ -d "${CLICKHOUSE_MOUNTED_CONF_DIR}/users.d" ]] && find "${CLICKHOUSE_MOUNTED_CONF_DIR}/users.d" -type f -exec cp -L {} "${CLICKHOUSE_CONF_DIR}/users.d" \;
|
||||
if [[ -d "${CLICKHOUSE_MOUNTED_CONF_DIR}/conf.d" ]]; then
|
||||
find "${CLICKHOUSE_MOUNTED_CONF_DIR}/conf.d" -type f -exec cp -L {} "${CLICKHOUSE_CONF_DIR}/conf.d" \;
|
||||
fi
|
||||
if [[ -d "${CLICKHOUSE_MOUNTED_CONF_DIR}/users.d" ]]; then
|
||||
find "${CLICKHOUSE_MOUNTED_CONF_DIR}/users.d" -type f -exec cp -L {} "${CLICKHOUSE_CONF_DIR}/users.d" \;
|
||||
fi
|
||||
fi
|
||||
else
|
||||
warn "The folder $CLICKHOUSE_CONF_DIR is not writable. This is likely because a read-only filesystem was mounted in that folder. Using $CLICKHOUSE_MOUNTED_DIR is recommended"
|
||||
|
||||
@@ -44,7 +44,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
||||
* [`22.8`, `22.8-debian-11`, `22.8.5`, `22.8.5-debian-11-r4`, `latest` (22.8/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/clickhouse/22.8/debian-11/Dockerfile)
|
||||
* [`22.7`, `22.7-debian-11`, `22.7.5`, `22.7.5-debian-11-r3` (22.7/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/clickhouse/22.7/debian-11/Dockerfile)
|
||||
* [`22.6`, `22.6-debian-11`, `22.6.8`, `22.6.8-debian-11-r1` (22.6/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/clickhouse/22.6/debian-11/Dockerfile)
|
||||
* [`22.5`, `22.5-debian-11`, `22.5.4`, `22.5.4-debian-11-r2` (22.5/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/clickhouse/22.5/debian-11/Dockerfile)
|
||||
* [`22.5`, `22.5-debian-11`, `22.5.4`, `22.5.4-debian-11-r3` (22.5/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/clickhouse/22.5/debian-11/Dockerfile)
|
||||
* [`22.3`, `22.3-debian-11`, `22.3.12`, `22.3.12-debian-11-r2` (22.3/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/clickhouse/22.3/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
Reference in New Issue
Block a user