[bitnami/clickhouse-keeper] Release clickhouse-keeper-25.3.2-debian-12-r3 (#79683)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2025-04-07 14:18:57 +02:00
committed by GitHub
parent 0c1e6ed239
commit 28311471fb
2 changed files with 9 additions and 3 deletions

View File

@@ -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." \

View File

@@ -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 **"