mirror of
https://github.com/bitnami/containers.git
synced 2026-03-13 14:58:03 +08:00
5.0.14-debian-10-r143 release
This commit is contained in:
@@ -9,9 +9,9 @@ ENV HOME="/" \
|
|||||||
COPY prebuildfs /
|
COPY prebuildfs /
|
||||||
# Install required system packages and dependencies
|
# Install required system packages and dependencies
|
||||||
RUN install_packages acl ca-certificates curl gzip libc6 procps tar
|
RUN install_packages acl ca-certificates curl gzip libc6 procps tar
|
||||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wait-for-port" "1.0.1-9" --checksum 4b509978f6d0a4c3b958deeb3490241cda60e4412c138da665192631d60f70de
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wait-for-port" "1.0.1-10" --checksum 35c818ba3f4b5aae905959bc7d3a5e81fc63786e3c662b604612c0aa7fcda8fd
|
||||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "redis" "5.0.14-33" --checksum ded129607ed6efe93b2a8da5f5fca57e3fe7157d36356dcf5710a9c4e3caf73e
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "redis" "5.0.14-35" --checksum cfd63079b9dd98973600799ccb2ba99ef715c2b276da4f1784c82a1a0e6c8cd2
|
||||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-6" --checksum 6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664
|
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-7" --checksum d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1
|
||||||
RUN apt-get update && apt-get upgrade -y && \
|
RUN apt-get update && apt-get upgrade -y && \
|
||||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||||
RUN chmod g+rwX /opt/bitnami
|
RUN chmod g+rwX /opt/bitnami
|
||||||
@@ -21,7 +21,7 @@ RUN ln -s /opt/bitnami/scripts/redis/run.sh /run.sh
|
|||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /opt/bitnami/scripts/redis/postunpack.sh
|
RUN /opt/bitnami/scripts/redis/postunpack.sh
|
||||||
ENV BITNAMI_APP_NAME="redis" \
|
ENV BITNAMI_APP_NAME="redis" \
|
||||||
BITNAMI_IMAGE_VERSION="5.0.14-debian-10-r142" \
|
BITNAMI_IMAGE_VERSION="5.0.14-debian-10-r143" \
|
||||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/redis/bin:$PATH"
|
PATH="/opt/bitnami/common/bin:/opt/bitnami/redis/bin:$PATH"
|
||||||
|
|
||||||
EXPOSE 6379
|
EXPOSE 6379
|
||||||
|
|||||||
@@ -1,23 +1,23 @@
|
|||||||
{
|
{
|
||||||
"gosu": {
|
"gosu": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664",
|
"digest": "d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1",
|
||||||
"distro": "debian-10",
|
"distro": "debian-10",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "1.14.0-6"
|
"version": "1.14.0-7"
|
||||||
},
|
},
|
||||||
"redis": {
|
"redis": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "ded129607ed6efe93b2a8da5f5fca57e3fe7157d36356dcf5710a9c4e3caf73e",
|
"digest": "cfd63079b9dd98973600799ccb2ba99ef715c2b276da4f1784c82a1a0e6c8cd2",
|
||||||
"distro": "debian-10",
|
"distro": "debian-10",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "5.0.14-33"
|
"version": "5.0.14-35"
|
||||||
},
|
},
|
||||||
"wait-for-port": {
|
"wait-for-port": {
|
||||||
"arch": "amd64",
|
"arch": "amd64",
|
||||||
"digest": "4b509978f6d0a4c3b958deeb3490241cda60e4412c138da665192631d60f70de",
|
"digest": "35c818ba3f4b5aae905959bc7d3a5e81fc63786e3c662b604612c0aa7fcda8fd",
|
||||||
"distro": "debian-10",
|
"distro": "debian-10",
|
||||||
"type": "NAMI",
|
"type": "NAMI",
|
||||||
"version": "1.0.1-9"
|
"version": "1.0.1-10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -74,9 +74,8 @@ is_dir_empty() {
|
|||||||
# boolean
|
# boolean
|
||||||
#########################
|
#########################
|
||||||
is_mounted_dir_empty() {
|
is_mounted_dir_empty() {
|
||||||
local -r path="${1:?missing directory}"
|
local dir="${1:?missing directory}"
|
||||||
# Calculate real path in order to avoid issues with symlinks
|
|
||||||
local -r dir="$(realpath "$path")"
|
|
||||||
if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then
|
if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then
|
||||||
true
|
true
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||||||
|
|
||||||
* [`6.2`, `6.2-debian-10`, `6.2.6`, `6.2.6-debian-10-r142`, `latest` (6.2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/6.2.6-debian-10-r142/6.2/debian-10/Dockerfile)
|
* [`6.2`, `6.2-debian-10`, `6.2.6`, `6.2.6-debian-10-r142`, `latest` (6.2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/6.2.6-debian-10-r142/6.2/debian-10/Dockerfile)
|
||||||
* [`6.0`, `6.0-debian-10`, `6.0.16`, `6.0.16-debian-10-r140` (6.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/6.0.16-debian-10-r140/6.0/debian-10/Dockerfile)
|
* [`6.0`, `6.0-debian-10`, `6.0.16`, `6.0.16-debian-10-r140` (6.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/6.0.16-debian-10-r140/6.0/debian-10/Dockerfile)
|
||||||
* [`5.0`, `5.0-debian-10`, `5.0.14`, `5.0.14-debian-10-r142` (5.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.14-debian-10-r142/5.0/debian-10/Dockerfile)
|
* [`5.0`, `5.0-debian-10`, `5.0.14`, `5.0.14-debian-10-r143` (5.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-redis/blob/5.0.14-debian-10-r143/5.0/debian-10/Dockerfile)
|
||||||
|
|
||||||
Subscribe to project updates by watching the [bitnami/redis GitHub repo](https://github.com/bitnami/bitnami-docker-redis).
|
Subscribe to project updates by watching the [bitnami/redis GitHub repo](https://github.com/bitnami/bitnami-docker-redis).
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user