From 28311471fb40a2ec884812c201b18a56ba86d860 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Mon, 7 Apr 2025 14:18:57 +0200 Subject: [PATCH] [bitnami/clickhouse-keeper] Release clickhouse-keeper-25.3.2-debian-12-r3 (#79683) Signed-off-by: Bitnami Bot --- bitnami/clickhouse-keeper/25/debian-12/Dockerfile | 4 ++-- .../rootfs/opt/bitnami/scripts/clickhouse-keeper/run.sh | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/bitnami/clickhouse-keeper/25/debian-12/Dockerfile b/bitnami/clickhouse-keeper/25/debian-12/Dockerfile index 7b4e020b60c4..d37c7fddffae 100644 --- a/bitnami/clickhouse-keeper/25/debian-12/Dockerfile +++ b/bitnami/clickhouse-keeper/25/debian-12/Dockerfile @@ -8,10 +8,10 @@ ARG TARGETARCH LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \ org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \ - org.opencontainers.image.created="2025-04-07T10:42:15Z" \ + org.opencontainers.image.created="2025-04-07T11:47:48Z" \ org.opencontainers.image.description="Application packaged by Broadcom, Inc." \ org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/clickhouse-keeper/README.md" \ - org.opencontainers.image.ref.name="25.3.2-debian-12-r2" \ + org.opencontainers.image.ref.name="25.3.2-debian-12-r3" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/clickhouse-keeper" \ org.opencontainers.image.title="clickhouse-keeper" \ org.opencontainers.image.vendor="Broadcom, Inc." \ diff --git a/bitnami/clickhouse-keeper/25/debian-12/rootfs/opt/bitnami/scripts/clickhouse-keeper/run.sh b/bitnami/clickhouse-keeper/25/debian-12/rootfs/opt/bitnami/scripts/clickhouse-keeper/run.sh index 4f016b9f49e3..a7c1a2e03914 100755 --- a/bitnami/clickhouse-keeper/25/debian-12/rootfs/opt/bitnami/scripts/clickhouse-keeper/run.sh +++ b/bitnami/clickhouse-keeper/25/debian-12/rootfs/opt/bitnami/scripts/clickhouse-keeper/run.sh @@ -17,7 +17,13 @@ set -o pipefail . /opt/bitnami/scripts/clickhouse-keeper-env.sh declare -a cmd=("${CLICKHOUSE_KEEPER_BASE_DIR}/bin/clickhouse-keeper") -declare -a args=("--config-file=${CLICKHOUSE_KEEPER_CONF_FILE}" "--pid-file=${CLICKHOUSE_KEEPER_PID_FILE}") +declare -a args=("--pid-file=${CLICKHOUSE_KEEPER_PID_FILE}") +# For compatibility with upstream image +if [[ -f "$CLICKHOUSE_KEEPER_CONF_FILE" ]]; then + args+=("--config-file=${CLICKHOUSE_KEEPER_CONF_FILE}") +else + args+=("--log-file=${CLICKHOUSE_KEEPER_LOG_FILE}" "--errorlog-file=${CLICKHOUSE_KEEPER_ERROR_LOG_FILE}") +fi args+=("$@") info "** Starting ClickHouse Keeper **"