mirror of
https://github.com/bitnami/containers.git
synced 2026-02-19 22:17:24 +08:00
[bitnami/postgresql] Release 14.7.0-debian-11-r16 (#28624)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -5,10 +5,10 @@ ARG TARGETARCH
|
||||
ARG WITH_ALL_LOCALES="no"
|
||||
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2023-03-23T06:27:17Z" \
|
||||
org.opencontainers.image.created="2023-03-28T14:48:53Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="14.7.0-debian-11-r15" \
|
||||
org.opencontainers.image.ref.name="14.7.0-debian-11-r16" \
|
||||
org.opencontainers.image.title="postgresql" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="14.7.0"
|
||||
|
||||
@@ -1,14 +1,12 @@
|
||||
{
|
||||
"gosu": {
|
||||
"arch": "amd64",
|
||||
"digest": "bf2b90a31df691e3648c4a41190a926bb638c3a9fa1dfcde36623ce1bfaadc23",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.16.0-3"
|
||||
},
|
||||
"postgresql": {
|
||||
"arch": "amd64",
|
||||
"digest": "0b70432b3c92fb977ea4d7ee0e79ccc47f6e2b073bb6b0dee162d829a36fb7d5",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "14.7.0-7"
|
||||
|
||||
@@ -112,7 +112,11 @@ is_web_server_running() {
|
||||
#########################
|
||||
web_server_start() {
|
||||
info "Starting $(web_server_type) in background"
|
||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh"
|
||||
if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then
|
||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh"
|
||||
elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then
|
||||
systemctl start "bitnami.$(web_server_type).service"
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
@@ -126,7 +130,11 @@ web_server_start() {
|
||||
#########################
|
||||
web_server_stop() {
|
||||
info "Stopping $(web_server_type)"
|
||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh"
|
||||
if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then
|
||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh"
|
||||
elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then
|
||||
systemctl stop "bitnami.$(web_server_type).service"
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
@@ -140,7 +148,11 @@ web_server_stop() {
|
||||
#########################
|
||||
web_server_restart() {
|
||||
info "Restarting $(web_server_type)"
|
||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh"
|
||||
if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then
|
||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh"
|
||||
elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then
|
||||
systemctl restart "bitnami.$(web_server_type).service"
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
@@ -153,7 +165,11 @@ web_server_restart() {
|
||||
# None
|
||||
#########################
|
||||
web_server_reload() {
|
||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh"
|
||||
if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then
|
||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh"
|
||||
elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then
|
||||
systemctl reload "bitnami.$(web_server_type).service"
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
|
||||
Reference in New Issue
Block a user