[bitnami/supabase-postgres] Release 15.1.0-debian-11-r17 (#28189)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
690cc05490
commit
abb79ecd74
|
|
@ -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-23T11:19:02Z" \
|
||||
org.opencontainers.image.created="2023-03-24T11:26:42Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="15.1.0-debian-11-r16" \
|
||||
org.opencontainers.image.ref.name="15.1.0-debian-11-r17" \
|
||||
org.opencontainers.image.title="supabase-postgres" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="15.1.0"
|
||||
|
|
@ -26,7 +26,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
|||
COMPONENTS=( \
|
||||
"java-11.0.18-10-3-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.16.0-3-linux-${OS_ARCH}-debian-11" \
|
||||
"supabase-postgres-15.1.0-13-linux-${OS_ARCH}-debian-11" \
|
||||
"supabase-postgres-15.1.0-14-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
|
|
|||
|
|
@ -15,9 +15,9 @@
|
|||
},
|
||||
"supabase-postgres": {
|
||||
"arch": "amd64",
|
||||
"digest": "628b873ad4a186089748b0e326c8d0565a4f9377d37828990fac077c742c43ca",
|
||||
"digest": "4b1c6fb63288ec06f531340b250c4538de04e8defa208a84f554a94ea24def64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "15.1.0-13"
|
||||
"version": "15.1.0-14"
|
||||
}
|
||||
}
|
||||
|
|
@ -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
|
||||
}
|
||||
|
||||
########################
|
||||
|
|
|
|||
Loading…
Reference in New Issue