10.14.0-debian-10-r85 release
This commit is contained in:
parent
a3dbed768a
commit
c002546f4a
|
|
@ -24,7 +24,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="10.14.0-debian-10-r84" \
|
||||
BITNAMI_IMAGE_VERSION="10.14.0-debian-10-r85" \
|
||||
LANG="en_US.UTF-8" \
|
||||
LANGUAGE="en_US:en" \
|
||||
NSS_WRAPPER_LIB="/opt/bitnami/common/lib/libnss_wrapper.so" \
|
||||
|
|
|
|||
|
|
@ -708,9 +708,14 @@ postgresql_custom_init_scripts() {
|
|||
# None
|
||||
#########################
|
||||
postgresql_stop() {
|
||||
local -r -a cmd=("pg_ctl" "stop" "-w" "-D" "$POSTGRESQL_DATA_DIR")
|
||||
if [[ -f "$POSTGRESQL_PID_FILE" ]]; then
|
||||
info "Stopping PostgreSQL..."
|
||||
PGDATA="$POSTGRESQL_DATA_DIR" pg_ctl stop -w
|
||||
if am_i_root; then
|
||||
gosu "$POSTGRESQL_DAEMON_USER" "${cmd[@]}"
|
||||
else
|
||||
"${cmd[@]}"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
* [`13`, `13-debian-10`, `13.0.0`, `13.0.0-debian-10-r30` (13/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/13.0.0-debian-10-r30/13/debian-10/Dockerfile)
|
||||
* [`12`, `12-debian-10`, `12.4.0`, `12.4.0-debian-10-r84` (12/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/12.4.0-debian-10-r84/12/debian-10/Dockerfile)
|
||||
* [`11`, `11-debian-10`, `11.9.0`, `11.9.0-debian-10-r76`, `latest` (11/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/11.9.0-debian-10-r76/11/debian-10/Dockerfile)
|
||||
* [`10`, `10-debian-10`, `10.14.0`, `10.14.0-debian-10-r84` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/10.14.0-debian-10-r84/10/debian-10/Dockerfile)
|
||||
* [`10`, `10-debian-10`, `10.14.0`, `10.14.0-debian-10-r85` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/10.14.0-debian-10-r85/10/debian-10/Dockerfile)
|
||||
* [`9.6`, `9.6-debian-10`, `9.6.19`, `9.6.19-debian-10-r84` (9.6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql-repmgr/blob/9.6.19-debian-10-r84/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).
|
||||
|
|
|
|||
Loading…
Reference in New Issue