mirror of
https://github.com/bitnami/containers.git
synced 2026-03-14 14:58:01 +08:00
[bitnami/mariadb] Release 10.4.28-debian-11-r18 (#29820)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -3,10 +3,10 @@ FROM docker.io/bitnami/minideb:bullseye
|
|||||||
ARG TARGETARCH
|
ARG TARGETARCH
|
||||||
|
|
||||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||||
org.opencontainers.image.created="2023-04-07T14:45:58Z" \
|
org.opencontainers.image.created="2023-04-10T20:01:56Z" \
|
||||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||||
org.opencontainers.image.licenses="Apache-2.0" \
|
org.opencontainers.image.licenses="Apache-2.0" \
|
||||||
org.opencontainers.image.ref.name="10.4.28-debian-11-r17" \
|
org.opencontainers.image.ref.name="10.4.28-debian-11-r18" \
|
||||||
org.opencontainers.image.title="mariadb" \
|
org.opencontainers.image.title="mariadb" \
|
||||||
org.opencontainers.image.vendor="VMware, Inc." \
|
org.opencontainers.image.vendor="VMware, Inc." \
|
||||||
org.opencontainers.image.version="10.4.28"
|
org.opencontainers.image.version="10.4.28"
|
||||||
|
|||||||
@@ -112,10 +112,10 @@ is_web_server_running() {
|
|||||||
#########################
|
#########################
|
||||||
web_server_start() {
|
web_server_start() {
|
||||||
info "Starting $(web_server_type) in background"
|
info "Starting $(web_server_type) in background"
|
||||||
if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then
|
if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then
|
||||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh"
|
|
||||||
elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then
|
|
||||||
systemctl start "bitnami.$(web_server_type).service"
|
systemctl start "bitnami.$(web_server_type).service"
|
||||||
|
else
|
||||||
|
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -130,10 +130,10 @@ web_server_start() {
|
|||||||
#########################
|
#########################
|
||||||
web_server_stop() {
|
web_server_stop() {
|
||||||
info "Stopping $(web_server_type)"
|
info "Stopping $(web_server_type)"
|
||||||
if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then
|
if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then
|
||||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh"
|
|
||||||
elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then
|
|
||||||
systemctl stop "bitnami.$(web_server_type).service"
|
systemctl stop "bitnami.$(web_server_type).service"
|
||||||
|
else
|
||||||
|
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -148,10 +148,10 @@ web_server_stop() {
|
|||||||
#########################
|
#########################
|
||||||
web_server_restart() {
|
web_server_restart() {
|
||||||
info "Restarting $(web_server_type)"
|
info "Restarting $(web_server_type)"
|
||||||
if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then
|
if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then
|
||||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh"
|
|
||||||
elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then
|
|
||||||
systemctl restart "bitnami.$(web_server_type).service"
|
systemctl restart "bitnami.$(web_server_type).service"
|
||||||
|
else
|
||||||
|
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,10 +165,10 @@ web_server_restart() {
|
|||||||
# None
|
# None
|
||||||
#########################
|
#########################
|
||||||
web_server_reload() {
|
web_server_reload() {
|
||||||
if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then
|
if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then
|
||||||
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh"
|
|
||||||
elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then
|
|
||||||
systemctl reload "bitnami.$(web_server_type).service"
|
systemctl reload "bitnami.$(web_server_type).service"
|
||||||
|
else
|
||||||
|
"${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user