mirror of
https://github.com/bitnami/containers.git
synced 2026-03-05 16:17:21 +08:00
10.16.0-debian-10-r27 release
This commit is contained in:
@@ -22,7 +22,7 @@ COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/postgresql/postunpack.sh
|
||||
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
|
||||
ENV BITNAMI_APP_NAME="postgresql" \
|
||||
BITNAMI_IMAGE_VERSION="10.16.0-debian-10-r26" \
|
||||
BITNAMI_IMAGE_VERSION="10.16.0-debian-10-r27" \
|
||||
LANG="en_US.UTF-8" \
|
||||
LANGUAGE="en_US:en" \
|
||||
NSS_WRAPPER_LIB="/opt/bitnami/common/lib/libnss_wrapper.so" \
|
||||
|
||||
@@ -103,6 +103,8 @@ generate_cron_conf() {
|
||||
local run_as="root"
|
||||
local schedule="* * * * *"
|
||||
|
||||
local clean="true"
|
||||
|
||||
# Parse optional CLI flags
|
||||
shift 2
|
||||
while [[ "$#" -gt 0 ]]; do
|
||||
@@ -115,6 +117,9 @@ generate_cron_conf() {
|
||||
shift
|
||||
schedule="$1"
|
||||
;;
|
||||
--no-clean)
|
||||
clean="false"
|
||||
;;
|
||||
*)
|
||||
echo "Invalid command line flag ${1}" >&2
|
||||
return 1
|
||||
@@ -124,7 +129,11 @@ generate_cron_conf() {
|
||||
done
|
||||
|
||||
mkdir -p /etc/cron.d
|
||||
echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name"
|
||||
if "$clean"; then
|
||||
echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name"
|
||||
else
|
||||
echo "${schedule} ${run_as} ${cmd}" >> /etc/cron.d/"$service_name"
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
|
||||
@@ -47,7 +47,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
||||
* [`13`, `13-debian-10`, `13.2.0`, `13.2.0-debian-10-r25` (13/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/13.2.0-debian-10-r25/13/debian-10/Dockerfile)
|
||||
* [`12`, `12-debian-10`, `12.6.0`, `12.6.0-debian-10-r26` (12/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/12.6.0-debian-10-r26/12/debian-10/Dockerfile)
|
||||
* [`11`, `11-debian-10`, `11.11.0`, `11.11.0-debian-10-r28`, `latest` (11/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/11.11.0-debian-10-r28/11/debian-10/Dockerfile)
|
||||
* [`10`, `10-debian-10`, `10.16.0`, `10.16.0-debian-10-r26` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/10.16.0-debian-10-r26/10/debian-10/Dockerfile)
|
||||
* [`10`, `10-debian-10`, `10.16.0`, `10.16.0-debian-10-r27` (10/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/10.16.0-debian-10-r27/10/debian-10/Dockerfile)
|
||||
* [`9.6`, `9.6-debian-10`, `9.6.21`, `9.6.21-debian-10-r27` (9.6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-postgresql/blob/9.6.21-debian-10-r27/9.6/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/postgresql GitHub repo](https://github.com/bitnami/bitnami-docker-postgresql).
|
||||
|
||||
Reference in New Issue
Block a user