5.0.5-debian-9-r51 release
This commit is contained in:
parent
e37b3486c8
commit
098f14573b
|
|
@ -15,7 +15,7 @@ COPY rootfs /
|
|||
RUN /postunpack.sh
|
||||
ENV ALLOW_EMPTY_PASSWORD="no" \
|
||||
BITNAMI_APP_NAME="redis" \
|
||||
BITNAMI_IMAGE_VERSION="5.0.5-debian-9-r50" \
|
||||
BITNAMI_IMAGE_VERSION="5.0.5-debian-9-r51" \
|
||||
NAMI_PREFIX="/.nami" \
|
||||
PATH="/opt/bitnami/redis/bin:$PATH" \
|
||||
REDIS_DISABLE_COMMANDS="" \
|
||||
|
|
|
|||
|
|
@ -325,6 +325,10 @@ redis_disable_unsafe_commands() {
|
|||
redis_initialize() {
|
||||
info "Initializing Redis..."
|
||||
|
||||
# This fixes an issue where the trap would kill the entrypoint.sh, if a PID was left over from a previous run
|
||||
# Exec replaces the process without creating a new one, and when the container is restarted it may have the same PID
|
||||
rm -f "$REDIS_BASEDIR/tmp/redis.pid"
|
||||
|
||||
# User injected custom configuration
|
||||
if [[ -e "$REDIS_BASEDIR/etc/redis.conf" ]]; then
|
||||
if [[ -e "$REDIS_BASEDIR/etc/redis-default.conf" ]]; then
|
||||
|
|
|
|||
|
|
@ -47,8 +47,8 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
|
||||
* [`5.0-ol-7`, `5.0.5-ol-7-r49` (5.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.5-ol-7-r49/5.0/ol-7/Dockerfile)
|
||||
* [`5.0-debian-9`, `5.0.5-debian-9-r50`, `5.0`, `5.0.5`, `5.0.5-r50`, `latest` (5.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.5-debian-9-r50/5.0/debian-9/Dockerfile)
|
||||
* [`5.0-centos-7`, `5.0.5-centos-7-r36` (5.0/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.5-centos-7-r36/5.0/centos-7/Dockerfile)
|
||||
* [`5.0-debian-9`, `5.0.5-debian-9-r51`, `5.0`, `5.0.5`, `5.0.5-r51`, `latest` (5.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.5-debian-9-r51/5.0/debian-9/Dockerfile)
|
||||
* [`5.0-centos-7`, `5.0.5-centos-7-r35` (5.0/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.5-centos-7-r35/5.0/centos-7/Dockerfile)
|
||||
* [`5.0-rhel-7`, `5.0.4-rhel-7-r30` (5.0/rhel-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.4-rhel-7-r30/5.0/rhel-7/Dockerfile)
|
||||
* [`4.0-ol-7`, `4.0.14-ol-7-r97` (4.0/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/4.0.14-ol-7-r97/4.0/ol-7/Dockerfile)
|
||||
* [`4.0-debian-9`, `4.0.14-debian-9-r88`, `4.0`, `4.0.14`, `4.0.14-r88` (4.0/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/4.0.14-debian-9-r88/4.0/debian-9/Dockerfile)
|
||||
|
|
|
|||
Loading…
Reference in New Issue