11.5.0-debian-9-r83 release
This commit is contained in:
parent
f0176be3a0
commit
03b980c5a3
|
|
@ -1,4 +1,4 @@
|
||||||
FROM bitnami/minideb-extras-base:stretch-r377
|
FROM bitnami/minideb-extras-base:stretch-r378
|
||||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||||
|
|
||||||
ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
|
ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
|
||||||
|
|
@ -9,14 +9,14 @@ ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
|
||||||
|
|
||||||
# Install required system packages and dependencies
|
# Install required system packages and dependencies
|
||||||
RUN install_packages libbsd0 libc6 libedit2 libgcc1 libicu57 liblzma5 libncurses5 libnss-wrapper libsqlite3-0 libssl1.1 libstdc++6 libtinfo5 libuuid1 libxml2 libxslt1.1 locales zlib1g
|
RUN install_packages libbsd0 libc6 libedit2 libgcc1 libicu57 liblzma5 libncurses5 libnss-wrapper libsqlite3-0 libssl1.1 libstdc++6 libtinfo5 libuuid1 libxml2 libxslt1.1 locales zlib1g
|
||||||
RUN . ./libcomponent.sh && component_unpack "postgresql" "11.5.0-5" --checksum 4fcd661a1058b4eb01f90c7e05911d22af5d64d578df09fc2d1fbeeddfc19714
|
RUN . ./libcomponent.sh && component_unpack "postgresql" "11.5.0-6" --checksum dbbb6b5b172dcd78edacb55af4c7b64de6483cea38106a3ab26ecfdee443a54a
|
||||||
RUN echo 'en_GB.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen
|
RUN echo 'en_GB.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen
|
||||||
RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen
|
RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen
|
||||||
|
|
||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /postunpack.sh
|
RUN /postunpack.sh
|
||||||
ENV BITNAMI_APP_NAME="postgresql" \
|
ENV BITNAMI_APP_NAME="postgresql" \
|
||||||
BITNAMI_IMAGE_VERSION="11.5.0-debian-9-r82" \
|
BITNAMI_IMAGE_VERSION="11.5.0-debian-9-r83" \
|
||||||
LANG="en_US.UTF-8" \
|
LANG="en_US.UTF-8" \
|
||||||
LANGUAGE="en_US:en" \
|
LANGUAGE="en_US:en" \
|
||||||
NAMI_PREFIX="/.nami" \
|
NAMI_PREFIX="/.nami" \
|
||||||
|
|
|
||||||
|
|
@ -139,6 +139,18 @@ export POSTGRESQL_SYNCHRONOUS_COMMIT_MODE="${POSTGRESQL_SYNCHRONOUS_COMMIT_MODE:
|
||||||
export POSTGRESQL_FSYNC="${POSTGRESQL_FSYNC:-on}"
|
export POSTGRESQL_FSYNC="${POSTGRESQL_FSYNC:-on}"
|
||||||
export POSTGRESQL_USERNAME="${POSTGRESQL_USERNAME:-postgres}"
|
export POSTGRESQL_USERNAME="${POSTGRESQL_USERNAME:-postgres}"
|
||||||
|
|
||||||
|
if [[ -z "${POSTGRESQL_INITSCRIPTS_USERNAME:-}" ]]; then
|
||||||
|
export POSTGRESQL_INITSCRIPTS_USERNAME=$POSTGRESQL_USERNAME
|
||||||
|
else
|
||||||
|
export POSTGRESQL_INITSCRIPTS_USERNAME=$POSTGRESQL_INITSCRIPTS_USERNAME
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "${POSTGRESQL_INITSCRIPTS_PASSWORD:-}" ]]; then
|
||||||
|
export POSTGRESQL_INITSCRIPTS_PASSWORD=$POSTGRESQL_PASSWORD
|
||||||
|
else
|
||||||
|
export POSTGRESQL_INITSCRIPTS_PASSWORD=$POSTGRESQL_INITSCRIPTS_PASSWORD
|
||||||
|
fi
|
||||||
|
|
||||||
# Version
|
# Version
|
||||||
export POSTGRESQL_VERSION="$(echo "$BITNAMI_IMAGE_VERSION" | grep -oP "^\d+\.\d+\.\d+")"
|
export POSTGRESQL_VERSION="$(echo "$BITNAMI_IMAGE_VERSION" | grep -oP "^\d+\.\d+\.\d+")"
|
||||||
export POSTGRESQL_MAJOR_VERSION="$(echo "$BITNAMI_IMAGE_VERSION" | grep -oP "^\d+")"
|
export POSTGRESQL_MAJOR_VERSION="$(echo "$BITNAMI_IMAGE_VERSION" | grep -oP "^\d+")"
|
||||||
|
|
@ -630,8 +642,8 @@ postgresql_custom_init_scripts() {
|
||||||
postgresql_debug "Sourcing $f"; . "$f"
|
postgresql_debug "Sourcing $f"; . "$f"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*.sql) postgresql_debug "Executing $f"; postgresql_execute "$POSTGRESQL_DATABASE" "$POSTGRESQL_USERNAME" "$POSTGRESQL_PASSWORD" < "$f";;
|
*.sql) postgresql_debug "Executing $f"; postgresql_execute "$POSTGRESQL_DATABASE" "$POSTGRESQL_INITSCRIPTS_USERNAME" "$POSTGRESQL_INITSCRIPTS_PASSWORD" < "$f";;
|
||||||
*.sql.gz) postgresql_debug "Executing $f"; gunzip -c "$f" | postgresql_execute "$POSTGRESQL_DATABASE" "$POSTGRESQL_USERNAME" "$POSTGRESQL_PASSWORD";;
|
*.sql.gz) postgresql_debug "Executing $f"; gunzip -c "$f" | postgresql_execute "$POSTGRESQL_DATABASE" "$POSTGRESQL_INITSCRIPTS_USERNAME" "$POSTGRESQL_INITSCRIPTS_PASSWORD";;
|
||||||
*) postgresql_debug "Ignoring $f" ;;
|
*) postgresql_debug "Ignoring $f" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
||||||
* [`12-debian-9`, `12.0.0-debian-9-r14`, `12`, `12.0.0`, `12.0.0-r14` (12/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/12.0.0-debian-9-r14/12/debian-9/Dockerfile)
|
* [`12-debian-9`, `12.0.0-debian-9-r14`, `12`, `12.0.0`, `12.0.0-r14` (12/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/12.0.0-debian-9-r14/12/debian-9/Dockerfile)
|
||||||
* [`12-centos-7`, `12.0.0-centos-7-r25` (12/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/12.0.0-centos-7-r25/12/centos-7/Dockerfile)
|
* [`12-centos-7`, `12.0.0-centos-7-r25` (12/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/12.0.0-centos-7-r25/12/centos-7/Dockerfile)
|
||||||
* [`11-ol-7`, `11.5.0-ol-7-r99` (11/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/11.5.0-ol-7-r99/11/ol-7/Dockerfile)
|
* [`11-ol-7`, `11.5.0-ol-7-r99` (11/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/11.5.0-ol-7-r99/11/ol-7/Dockerfile)
|
||||||
* [`11-debian-9`, `11.5.0-debian-9-r82`, `11`, `11.5.0`, `11.5.0-r82`, `latest` (11/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/11.5.0-debian-9-r82/11/debian-9/Dockerfile)
|
* [`11-debian-9`, `11.5.0-debian-9-r83`, `11`, `11.5.0`, `11.5.0-r83`, `latest` (11/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/11.5.0-debian-9-r83/11/debian-9/Dockerfile)
|
||||||
* [`11-centos-7`, `11.5.0-centos-7-r94` (11/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/11.5.0-centos-7-r94/11/centos-7/Dockerfile)
|
* [`11-centos-7`, `11.5.0-centos-7-r94` (11/centos-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/11.5.0-centos-7-r94/11/centos-7/Dockerfile)
|
||||||
* [`10-ol-7`, `10.10.0-ol-7-r97` (10/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/10.10.0-ol-7-r97/10/ol-7/Dockerfile)
|
* [`10-ol-7`, `10.10.0-ol-7-r97` (10/ol-7/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/10.10.0-ol-7-r97/10/ol-7/Dockerfile)
|
||||||
* [`10-debian-9`, `10.10.0-debian-9-r86`, `10`, `10.10.0`, `10.10.0-r86` (10/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/10.10.0-debian-9-r86/10/debian-9/Dockerfile)
|
* [`10-debian-9`, `10.10.0-debian-9-r86`, `10`, `10.10.0`, `10.10.0-r86` (10/debian-9/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/10.10.0-debian-9-r86/10/debian-9/Dockerfile)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue