diff --git a/bitnami/postgresql/14/debian-11/Dockerfile b/bitnami/postgresql/14/debian-11/Dockerfile index f13e1f4fb241..be0083d294db 100644 --- a/bitnami/postgresql/14/debian-11/Dockerfile +++ b/bitnami/postgresql/14/debian-11/Dockerfile @@ -6,7 +6,7 @@ ARG WITH_ALL_LOCALES="no" LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \ org.opencontainers.image.description="Application packaged by Bitnami" \ - org.opencontainers.image.ref.name="14.6.0-debian-11-r10" \ + org.opencontainers.image.ref.name="14.6.0-debian-11-r11" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/postgresql" \ org.opencontainers.image.title="postgresql" \ org.opencontainers.image.vendor="VMware, Inc." \ @@ -24,7 +24,7 @@ RUN install_packages ca-certificates curl libbsd0 libbz2-1.0 libedit2 libffi7 li RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ COMPONENTS=( \ "gosu-1.14.0-156-linux-${OS_ARCH}-debian-11" \ - "postgresql-14.6.0-1-linux-${OS_ARCH}-debian-11" \ + "postgresql-14.6.0-2-linux-${OS_ARCH}-debian-11" \ ) && \ for COMPONENT in "${COMPONENTS[@]}"; do \ if [ ! -f "${COMPONENT}.tar.gz" ]; then \ diff --git a/bitnami/postgresql/14/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/postgresql/14/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 5418e8a3bc50..61e433eb13f1 100644 --- a/bitnami/postgresql/14/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/postgresql/14/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "postgresql": { "arch": "amd64", - "digest": "dc8bd6af9feb3a0c08afbc7e6bddb89d61d02be3a0bb77ae335cdd3bf1d1863b", + "digest": "fe52c66a86e11cab2af21d7a184c28c87b8f18ebf967646fd42f449515d1e0c5", "distro": "debian-11", "type": "NAMI", - "version": "14.6.0-1" + "version": "14.6.0-2" } } \ No newline at end of file diff --git a/bitnami/postgresql/14/debian-11/rootfs/opt/bitnami/scripts/libpostgresql.sh b/bitnami/postgresql/14/debian-11/rootfs/opt/bitnami/scripts/libpostgresql.sh index f2694a2df06a..7285579c890a 100644 --- a/bitnami/postgresql/14/debian-11/rootfs/opt/bitnami/scripts/libpostgresql.sh +++ b/bitnami/postgresql/14/debian-11/rootfs/opt/bitnami/scripts/libpostgresql.sh @@ -653,6 +653,9 @@ postgresql_initialize() { # Delete conf files generated on first run rm -f "$POSTGRESQL_DATA_DIR"/postgresql.conf "$POSTGRESQL_DATA_DIR"/pg_hba.conf + + # Stop postgresql + postgresql_stop } ########################