diff --git a/bitnami/postgresql-repmgr/12/debian-10/Dockerfile b/bitnami/postgresql-repmgr/12/debian-10/Dockerfile index db8d13ae084c..5f43307969e1 100644 --- a/bitnami/postgresql-repmgr/12/debian-10/Dockerfile +++ b/bitnami/postgresql-repmgr/12/debian-10/Dockerfile @@ -9,7 +9,7 @@ ENV HOME="/" \ COPY prebuildfs / # Install required system packages and dependencies RUN install_packages acl ca-certificates curl gzip libbsd0 libc6 libedit2 libffi6 libgcc1 libgmp10 libgnutls30 libhogweed4 libicu63 libidn2-0 libldap-2.4-2 liblzma5 libnettle6 libp11-kit0 libreadline7 libsasl2-2 libsqlite3-0 libssl1.1 libstdc++6 libtasn1-6 libtinfo6 libunistring2 libuuid1 libxml2 libxslt1.1 locales procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "postgresql-repmgr" "12.6.0-17" --checksum d21acaa99753f95e8faa9c9c7a10a7125f56bb54e9c69fc744da85c865b5ffa8 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "postgresql-repmgr" "12.7.0-0" --checksum 661792024abd4ac44dac63854317084d644366e34fe554b2bf846a37298ee24c RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50 RUN chmod g+rwX /opt/bitnami RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8 @@ -22,7 +22,7 @@ COPY rootfs / RUN /opt/bitnami/scripts/postgresql-repmgr/postunpack.sh RUN /opt/bitnami/scripts/locales/add-extra-locales.sh ENV BITNAMI_APP_NAME="postgresql-repmgr" \ - BITNAMI_IMAGE_VERSION="12.6.0-debian-10-r86" \ + BITNAMI_IMAGE_VERSION="12.7.0-debian-10-r0" \ LANG="en_US.UTF-8" \ LANGUAGE="en_US:en" \ NSS_WRAPPER_LIB="/opt/bitnami/common/lib/libnss_wrapper.so" \ diff --git a/bitnami/postgresql-repmgr/12/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/postgresql-repmgr/12/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index 9934ab63a408..ebd1a8f7519b 100644 --- a/bitnami/postgresql-repmgr/12/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/postgresql-repmgr/12/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "postgresql-repmgr": { "arch": "amd64", - "digest": "d21acaa99753f95e8faa9c9c7a10a7125f56bb54e9c69fc744da85c865b5ffa8", + "digest": "661792024abd4ac44dac63854317084d644366e34fe554b2bf846a37298ee24c", "distro": "debian-10", "type": "NAMI", - "version": "12.6.0-17" + "version": "12.7.0-0" } } \ No newline at end of file diff --git a/bitnami/postgresql-repmgr/12/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/postgresql-repmgr/12/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index 264a9291d634..55e1bef8d71d 100644 --- a/bitnami/postgresql-repmgr/12/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/postgresql-repmgr/12/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh @@ -27,7 +27,7 @@ persist_app() { local -r app="${1:?missing app}" local -a files_to_restore - read -r -a files_to_persist <<< "$2" + read -r -a files_to_persist <<< "$(tr ',;:' ' ' <<< "$2")" local -r install_dir="${BITNAMI_ROOT_DIR}/${app}" local -r persist_dir="${BITNAMI_VOLUME_DIR}/${app}" # Persist the individual files @@ -83,7 +83,7 @@ persist_app() { restore_persisted_app() { local -r app="${1:?missing app}" local -a files_to_restore - read -r -a files_to_restore <<< "$2" + read -r -a files_to_restore <<< "$(tr ',;:' ' ' <<< "$2")" local -r install_dir="${BITNAMI_ROOT_DIR}/${app}" local -r persist_dir="${BITNAMI_VOLUME_DIR}/${app}" # Restore the individual persisted files diff --git a/bitnami/postgresql-repmgr/12/debian-10/rootfs/opt/bitnami/scripts/postgresql-env.sh b/bitnami/postgresql-repmgr/12/debian-10/rootfs/opt/bitnami/scripts/postgresql-env.sh index 0e5bc9f76bf5..e5f1ab1f1420 100644 --- a/bitnami/postgresql-repmgr/12/debian-10/rootfs/opt/bitnami/scripts/postgresql-env.sh +++ b/bitnami/postgresql-repmgr/12/debian-10/rootfs/opt/bitnami/scripts/postgresql-env.sh @@ -91,8 +91,8 @@ postgresql_env_vars=( REPMGR_NODE_NAME REPMGR_NODE_NETWORK_NAME REPMGR_NODE_PRIORITY - REPMGR_PORT_NUMBER REPMGR_NODE_LOCATION + REPMGR_PORT_NUMBER REPMGR_LOG_LEVEL REPMGR_START_OPTIONS REPMGR_CONNECT_TIMEOUT @@ -375,8 +375,8 @@ export REPMGR_NODE_ID="${REPMGR_NODE_ID:-}" export REPMGR_NODE_NAME="${REPMGR_NODE_NAME:-$(hostname)}" export REPMGR_NODE_NETWORK_NAME="${REPMGR_NODE_NETWORK_NAME:-}" export REPMGR_NODE_PRIORITY="${REPMGR_NODE_PRIORITY:-100}" -export REPMGR_PORT_NUMBER="${REPMGR_PORT_NUMBER:-5432}" export REPMGR_NODE_LOCATION="${REPMGR_NODE_LOCATION:-default}" +export REPMGR_PORT_NUMBER="${REPMGR_PORT_NUMBER:-5432}" export REPMGR_LOG_LEVEL="${REPMGR_LOG_LEVEL:-NOTICE}" export REPMGR_START_OPTIONS="${REPMGR_START_OPTIONS:-}" export REPMGR_CONNECT_TIMEOUT="${REPMGR_CONNECT_TIMEOUT:-5}" diff --git a/bitnami/postgresql-repmgr/README.md b/bitnami/postgresql-repmgr/README.md index 7dc88b228d30..c51b79f812e9 100644 --- a/bitnami/postgresql-repmgr/README.md +++ b/bitnami/postgresql-repmgr/README.md @@ -44,7 +44,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`13`, `13-debian-10`, `13.3.0`, `13.3.0-debian-10-r-1` (13/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/13.3.0-debian-10-r-1/13/debian-10/Dockerfile) -* [`12`, `12-debian-10`, `12.7.0`, `12.7.0-debian-10-r-1` (12/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/12.7.0-debian-10-r-1/12/debian-10/Dockerfile) +* [`12`, `12-debian-10`, `12.7.0`, `12.7.0-debian-10-r0` (12/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/12.7.0-debian-10-r0/12/debian-10/Dockerfile) * [`11`, `11-debian-10`, `11.12.0`, `11.12.0-debian-10-r0`, `latest` (11/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/11.12.0-debian-10-r0/11/debian-10/Dockerfile) * [`10`, `10-debian-10`, `10.17.0`, `10.17.0-debian-10-r0` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/10.17.0-debian-10-r0/10/debian-10/Dockerfile) * [`9.6`, `9.6-debian-10`, `9.6.22`, `9.6.22-debian-10-r0` (9.6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/9.6.22-debian-10-r0/9.6/debian-10/Dockerfile)