diff --git a/bitnami/postgresql-repmgr/12/debian-11/Dockerfile b/bitnami/postgresql-repmgr/12/debian-11/Dockerfile index d326d8a2edd0..257c12b7af98 100644 --- a/bitnami/postgresql-repmgr/12/debian-11/Dockerfile +++ b/bitnami/postgresql-repmgr/12/debian-11/Dockerfile @@ -6,10 +6,10 @@ FROM docker.io/bitnami/minideb:bullseye ARG TARGETARCH LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \ - org.opencontainers.image.created="2023-07-02T08:13:41Z" \ + org.opencontainers.image.created="2023-07-05T08:38:59Z" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="12.15.0-debian-11-r18" \ + org.opencontainers.image.ref.name="12.15.0-debian-11-r19" \ org.opencontainers.image.title="postgresql-repmgr" \ org.opencontainers.image.vendor="VMware, Inc." \ org.opencontainers.image.version="12.15.0" diff --git a/bitnami/postgresql-repmgr/12/debian-11/prebuildfs/opt/bitnami/licenses/licenses.txt b/bitnami/postgresql-repmgr/12/debian-11/prebuildfs/opt/bitnami/licenses/licenses.txt index 8373a19703c6..76956b38e82c 100644 --- a/bitnami/postgresql-repmgr/12/debian-11/prebuildfs/opt/bitnami/licenses/licenses.txt +++ b/bitnami/postgresql-repmgr/12/debian-11/prebuildfs/opt/bitnami/licenses/licenses.txt @@ -1,3 +1,2 @@ -Bitnami containers ship with software bundles. You can find the licenses at: -https://bitnami.com/open-source +Bitnami containers ship with software bundles. You can find the licenses under: /opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt diff --git a/bitnami/postgresql-repmgr/12/debian-11/rootfs/opt/bitnami/scripts/libpostgresql.sh b/bitnami/postgresql-repmgr/12/debian-11/rootfs/opt/bitnami/scripts/libpostgresql.sh index 980333b2b056..572dd54b60d7 100644 --- a/bitnami/postgresql-repmgr/12/debian-11/rootfs/opt/bitnami/scripts/libpostgresql.sh +++ b/bitnami/postgresql-repmgr/12/debian-11/rootfs/opt/bitnami/scripts/libpostgresql.sh @@ -622,6 +622,7 @@ postgresql_initialize() { # Configure port postgresql_set_property "port" "$POSTGRESQL_PORT_NUMBER" is_empty_value "$POSTGRESQL_DEFAULT_TOAST_COMPRESSION" || postgresql_set_property "default_toast_compression" "$POSTGRESQL_DEFAULT_TOAST_COMPRESSION" + is_empty_value "$POSTGRESQL_PASSWORD_ENCRYPTION" || postgresql_set_property "password_encryption" "$POSTGRESQL_PASSWORD_ENCRYPTION" if ! is_dir_empty "$POSTGRESQL_DATA_DIR"; then info "Deploying PostgreSQL with persisted data..." export POSTGRESQL_FIRST_BOOT="no" diff --git a/bitnami/postgresql-repmgr/12/debian-11/rootfs/opt/bitnami/scripts/postgresql-env.sh b/bitnami/postgresql-repmgr/12/debian-11/rootfs/opt/bitnami/scripts/postgresql-env.sh index 57d459f1cb8b..1046271e7105 100644 --- a/bitnami/postgresql-repmgr/12/debian-11/rootfs/opt/bitnami/scripts/postgresql-env.sh +++ b/bitnami/postgresql-repmgr/12/debian-11/rootfs/opt/bitnami/scripts/postgresql-env.sh @@ -91,6 +91,7 @@ postgresql_env_vars=( POSTGRESQL_POSTGRES_CONNECTION_LIMIT POSTGRESQL_WAL_LEVEL POSTGRESQL_DEFAULT_TOAST_COMPRESSION + POSTGRESQL_PASSWORD_ENCRYPTION POSTGRESQL_AUTOCTL_CONF_DIR POSTGRESQL_AUTOCTL_MODE POSTGRESQL_AUTOCTL_MONITOR_HOST @@ -361,6 +362,7 @@ POSTGRESQL_POSTGRES_CONNECTION_LIMIT="${POSTGRESQL_POSTGRES_CONNECTION_LIMIT:-"$ export POSTGRESQL_POSTGRES_CONNECTION_LIMIT="${POSTGRESQL_POSTGRES_CONNECTION_LIMIT:-}" export POSTGRESQL_WAL_LEVEL="${POSTGRESQL_WAL_LEVEL:-replica}" export POSTGRESQL_DEFAULT_TOAST_COMPRESSION="${POSTGRESQL_DEFAULT_TOAST_COMPRESSION:-}" +export POSTGRESQL_PASSWORD_ENCRYPTION="${POSTGRESQL_PASSWORD_ENCRYPTION:-}" # pgAutoFailover settings export POSTGRESQL_AUTOCTL_VOLUME_DIR="${POSTGRESQL_VOLUME_DIR}/pgautoctl"