mirror of
https://github.com/bitnami/containers.git
synced 2026-02-14 16:47:21 +08:00
[bitnami/minio-client] Release 2023.3.23-debian-11-r0 (#28536)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -3,13 +3,13 @@ FROM docker.io/bitnami/minideb:bullseye
|
||||
ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2023-03-24T04:16:31Z" \
|
||||
org.opencontainers.image.created="2023-03-28T03:26:11Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="2023.3.20-debian-11-r1" \
|
||||
org.opencontainers.image.ref.name="2023.3.23-debian-11-r0" \
|
||||
org.opencontainers.image.title="minio-client" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="2023.3.20"
|
||||
org.opencontainers.image.version="2023.3.23"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
@@ -22,7 +22,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
RUN install_packages ca-certificates curl procps
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
COMPONENTS=( \
|
||||
"minio-client-2023.3.20-0-linux-${OS_ARCH}-debian-11" \
|
||||
"minio-client-2023.3.23-0-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.16.0-3-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
@@ -41,7 +41,7 @@ RUN chmod g+rwX /opt/bitnami
|
||||
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/minio-client/postunpack.sh
|
||||
ENV APP_VERSION="2023.3.20" \
|
||||
ENV APP_VERSION="2023.3.23" \
|
||||
BITNAMI_APP_NAME="minio-client" \
|
||||
PATH="/opt/bitnami/minio-client/bin:/opt/bitnami/common/bin:$PATH"
|
||||
|
||||
|
||||
@@ -1,16 +1,14 @@
|
||||
{
|
||||
"gosu": {
|
||||
"arch": "amd64",
|
||||
"digest": "bf2b90a31df691e3648c4a41190a926bb638c3a9fa1dfcde36623ce1bfaadc23",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.16.0-3"
|
||||
},
|
||||
"minio-client": {
|
||||
"arch": "amd64",
|
||||
"digest": "ab3901095dea65b8566450ec7385e2bac0fd03dabfe585cdf0ef700cfe78214a",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2023.3.20-0"
|
||||
"version": "2023.3.23-0"
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
|
||||
########################
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
rolling-tags:
|
||||
- "2023"
|
||||
- 2023-debian-11
|
||||
- 2023.3.20
|
||||
- 2023.3.23
|
||||
- latest
|
||||
|
||||
Reference in New Issue
Block a user