[bitnami/redis] Release 6.2.7-debian-11-r17 (#275)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
4f4d38479f
commit
6958812cc5
|
|
@ -9,7 +9,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl gzip libc6 libssl1.1 procps tar
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wait-for-port" "1.0.3-152" --checksum 0694ae67645c416d9f6875e90c0f7cef379b4ac8030a6a5b8b5cc9ca77c6975d
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "redis" "6.2.7-151" --checksum 259beb3c75ffeb10a319f41c6a932a78b9c18eda9cc4c3c7e7e476d537d8f31b
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "redis" "6.2.7-152" --checksum 259beb3c75ffeb10a319f41c6a932a78b9c18eda9cc4c3c7e7e476d537d8f31b
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-152" --checksum 0c751c7e2ec0bc900a19dbec0306d6294fe744ddfb0fa64197ba1a36040092f0
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
"digest": "259beb3c75ffeb10a319f41c6a932a78b9c18eda9cc4c3c7e7e476d537d8f31b",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "6.2.7-151"
|
||||
"version": "6.2.7-152"
|
||||
},
|
||||
"wait-for-port": {
|
||||
"arch": "amd64",
|
||||
|
|
|
|||
|
|
@ -413,6 +413,10 @@ redis_configure_default() {
|
|||
[[ -n "$REDIS_TLS_DH_PARAMS_FILE" ]] && redis_conf_set tls-dh-params-file "$REDIS_TLS_DH_PARAMS_FILE"
|
||||
redis_conf_set tls-auth-clients "$REDIS_TLS_AUTH_CLIENTS"
|
||||
fi
|
||||
# Multithreading configuration
|
||||
! is_empty_value "$REDIS_IO_THREADS_DO_READS" && redis_conf_set "io-threads-do-reads" "$REDIS_IO_THREADS_DO_READS"
|
||||
! is_empty_value "$REDIS_IO_THREADS" && redis_conf_set "io-threads" "$REDIS_IO_THREADS"
|
||||
|
||||
if [[ -n "$REDIS_PASSWORD" ]]; then
|
||||
redis_conf_set requirepass "$REDIS_PASSWORD"
|
||||
else
|
||||
|
|
|
|||
|
|
@ -39,6 +39,8 @@ redis_env_vars=(
|
|||
REDIS_PASSWORD
|
||||
REDIS_MASTER_PASSWORD
|
||||
REDIS_ACLFILE
|
||||
REDIS_IO_THREADS_DO_READS
|
||||
REDIS_IO_THREADS
|
||||
REDIS_TLS_ENABLED
|
||||
REDIS_TLS_PORT_NUMBER
|
||||
REDIS_TLS_CERT_FILE
|
||||
|
|
@ -100,6 +102,8 @@ export ALLOW_EMPTY_PASSWORD="${ALLOW_EMPTY_PASSWORD:-no}"
|
|||
export REDIS_PASSWORD="${REDIS_PASSWORD:-}"
|
||||
export REDIS_MASTER_PASSWORD="${REDIS_MASTER_PASSWORD:-}"
|
||||
export REDIS_ACLFILE="${REDIS_ACLFILE:-}"
|
||||
export REDIS_IO_THREADS_DO_READS="${REDIS_IO_THREADS_DO_READS:-}"
|
||||
export REDIS_IO_THREADS="${REDIS_IO_THREADS:-}"
|
||||
|
||||
# TLS settings
|
||||
export REDIS_TLS_ENABLED="${REDIS_TLS_ENABLED:-no}"
|
||||
|
|
|
|||
|
|
@ -47,8 +47,8 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`7.0`, `7.0-debian-11`, `7.0.4`, `7.0.4-debian-11-r2`, `latest` (7.0/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/7.0.4-debian-11-r2/7.0/debian-11/Dockerfile)
|
||||
* [`6.2`, `6.2-debian-11`, `6.2.7`, `6.2.7-debian-11-r16` (6.2/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/6.2.7-debian-11-r16/6.2/debian-11/Dockerfile)
|
||||
* [`7.0`, `7.0-debian-11`, `7.0.4`, `7.0.4-debian-11-r3`, `latest` (7.0/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/7.0.4-debian-11-r3/7.0/debian-11/Dockerfile)
|
||||
* [`6.2`, `6.2-debian-11`, `6.2.7`, `6.2.7-debian-11-r17` (6.2/debian-11/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/6.2.7-debian-11-r17/6.2/debian-11/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/redis GitHub repo](https://github.com/bitnami/bitnami-docker-redis).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue