[bitnami/redis-cluster] Release 7.0.15-debian-11-r19 (#61977)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
82aa0586be
commit
fccf0eef1e
|
|
@ -7,10 +7,10 @@ ARG TARGETARCH
|
|||
|
||||
LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
|
||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2024-02-15T19:45:08Z" \
|
||||
org.opencontainers.image.created="2024-02-16T18:29:37Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="7.0.15-debian-11-r18" \
|
||||
org.opencontainers.image.ref.name="7.0.15-debian-11-r19" \
|
||||
org.opencontainers.image.title="redis-cluster" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="7.0.15"
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ unset redis_cluster_env_vars
|
|||
export REDIS_VOLUME_DIR="/bitnami/redis"
|
||||
export REDIS_BASE_DIR="${BITNAMI_ROOT_DIR}/redis"
|
||||
export REDIS_CONF_DIR="${REDIS_BASE_DIR}/etc"
|
||||
export REDIS_DEFAULT_CONF_DIR="${REDIS_BASE_DIR}/etc.default"
|
||||
export REDIS_DATA_DIR="${REDIS_DATA_DIR:-${REDIS_VOLUME_DIR}/data}"
|
||||
export REDIS_MOUNTED_CONF_DIR="${REDIS_BASE_DIR}/mounted-etc"
|
||||
export REDIS_OVERRIDES_FILE="${REDIS_OVERRIDES_FILE:-${REDIS_MOUNTED_CONF_DIR}/overrides.conf}"
|
||||
|
|
|
|||
|
|
@ -18,6 +18,12 @@ set -o pipefail
|
|||
|
||||
print_welcome_page
|
||||
|
||||
# We add the copy from default config in the entrypoint to not break users
|
||||
# bypassing the setup.sh logic. If the file already exists do not overwrite (in
|
||||
# case someone mounts a configuration file in /opt/bitnami/redis/etc)
|
||||
debug "Copying files from $REDIS_DEFAULT_CONF_DIR to $REDIS_CONF_DIR"
|
||||
cp -nr "$REDIS_DEFAULT_CONF_DIR"/. "$REDIS_CONF_DIR"
|
||||
|
||||
if [[ "$*" = *"/run.sh"* ]]; then
|
||||
info "** Starting Redis setup **"
|
||||
/opt/bitnami/scripts/redis-cluster/setup.sh
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ set -o pipefail
|
|||
. /opt/bitnami/scripts/librediscluster.sh
|
||||
. /opt/bitnami/scripts/libfs.sh
|
||||
|
||||
for dir in "$REDIS_VOLUME_DIR" "$REDIS_DATA_DIR" "$REDIS_BASE_DIR" "$REDIS_CONF_DIR"; do
|
||||
for dir in "$REDIS_VOLUME_DIR" "$REDIS_DATA_DIR" "$REDIS_BASE_DIR" "$REDIS_CONF_DIR" "$REDIS_DEFAULT_CONF_DIR"; do
|
||||
ensure_dir_exists "$dir"
|
||||
done
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue