diff --git a/bitnami/postgresql-repmgr/11/debian-10/Dockerfile b/bitnami/postgresql-repmgr/11/debian-10/Dockerfile index 9f087c32c187..b1a170d54d8a 100644 --- a/bitnami/postgresql-repmgr/11/debian-10/Dockerfile +++ b/bitnami/postgresql-repmgr/11/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" "11.11.0-17" --checksum 32967d8bc7e6f461f433f3cbc2a8a01a4846932ed7650d67ebfa61b74e4cdf54 +RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "postgresql-repmgr" "11.12.0-0" --checksum 2f967bb4ea7e67a4e13d121867f5ff47f8236aa874b513e235306613eb8c7749 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="11.11.0-debian-10-r76" \ + BITNAMI_IMAGE_VERSION="11.12.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/11/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/postgresql-repmgr/11/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json index ab7b285e282b..5f9a8ad3ec33 100644 --- a/bitnami/postgresql-repmgr/11/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/postgresql-repmgr/11/debian-10/prebuildfs/opt/bitnami/.bitnami_components.json @@ -8,9 +8,9 @@ }, "postgresql-repmgr": { "arch": "amd64", - "digest": "32967d8bc7e6f461f433f3cbc2a8a01a4846932ed7650d67ebfa61b74e4cdf54", + "digest": "2f967bb4ea7e67a4e13d121867f5ff47f8236aa874b513e235306613eb8c7749", "distro": "debian-10", "type": "NAMI", - "version": "11.11.0-17" + "version": "11.12.0-0" } } \ No newline at end of file diff --git a/bitnami/postgresql-repmgr/11/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh b/bitnami/postgresql-repmgr/11/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh index 264a9291d634..55e1bef8d71d 100644 --- a/bitnami/postgresql-repmgr/11/debian-10/prebuildfs/opt/bitnami/scripts/libpersistence.sh +++ b/bitnami/postgresql-repmgr/11/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/11/debian-10/rootfs/opt/bitnami/scripts/postgresql-env.sh b/bitnami/postgresql-repmgr/11/debian-10/rootfs/opt/bitnami/scripts/postgresql-env.sh index 0e5bc9f76bf5..e5f1ab1f1420 100644 --- a/bitnami/postgresql-repmgr/11/debian-10/rootfs/opt/bitnami/scripts/postgresql-env.sh +++ b/bitnami/postgresql-repmgr/11/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 119602111cf6..48168055e86c 100644 --- a/bitnami/postgresql-repmgr/README.md +++ b/bitnami/postgresql-repmgr/README.md @@ -45,8 +45,8 @@ 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.6.0`, `12.6.0-debian-10-r86` (12/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/12.6.0-debian-10-r86/12/debian-10/Dockerfile) -* [`11`, `11-debian-10`, `11.11.0`, `11.11.0-debian-10-r76`, `latest` (11/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/11.11.0-debian-10-r76/11/debian-10/Dockerfile) -* [`10`, `10-debian-10`, `10.16.0`, `10.16.0-debian-10-r83` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/10.16.0-debian-10-r83/10/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-r-1` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/10.17.0-debian-10-r-1/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) Subscribe to project updates by watching the [bitnami/postgresql-repmgr GitHub repo](https://github.com/bitnami/bitnami-docker-postgresql-repmgr).