[bitnami/minio-client] Release 2024.1.16-debian-11-r0 (#54820)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2024-01-16 21:27:56 +01:00 committed by GitHub
parent 4fadd808d3
commit 9b45de18ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 29 additions and 27 deletions

View File

@ -7,13 +7,13 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2024-01-13T10:06:52Z" \
org.opencontainers.image.created="2024-01-16T19:49:23Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="2024.1.13-debian-11-r0" \
org.opencontainers.image.ref.name="2024.1.16-debian-11-r0" \
org.opencontainers.image.title="minio-client" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="2024.1.13"
org.opencontainers.image.version="2024.1.16"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@ -26,7 +26,7 @@ SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
RUN install_packages ca-certificates curl jq procps
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
COMPONENTS=( \
"minio-client-2024.1.13-0-linux-${OS_ARCH}-debian-11" \
"minio-client-2024.1.16-0-linux-${OS_ARCH}-debian-11" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@ -44,7 +44,7 @@ RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/minio-client/postunpack.sh
ENV APP_VERSION="2024.1.13" \
ENV APP_VERSION="2024.1.16" \
BITNAMI_APP_NAME="minio-client" \
PATH="/opt/bitnami/minio-client/bin:$PATH"

View File

@ -3,6 +3,6 @@
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "2024.1.13-0"
"version": "2024.1.16-0"
}
}

View File

@ -1,5 +1,5 @@
rolling-tags:
- "2024"
- 2024-debian-11
- 2024.1.13
- 2024.1.16
- latest

View File

@ -13,13 +13,6 @@ Disclaimer: All software products, projects and company names are trademark(TM)
docker run --name minio-client bitnami/minio-client:latest
```
### Docker Compose
```console
curl -sSL https://raw.githubusercontent.com/bitnami/containers/main/bitnami/minio-client/docker-compose.yml > docker-compose.yml
docker-compose up -d
```
## Why use Bitnami Images?
* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.
@ -67,20 +60,23 @@ docker build -t bitnami/APP:latest .
## Environment variables
| Name | Description | Default Value | Can be set |
|-------------------------------|-------------------------------------------------|------------------------------------|------------|
| `$MINIO_CLIENT_BASE_DIR` | MinIO Client installation directory. | `${BITNAMI_ROOT_DIR}/minio-client` | |
| `$MINIO_CLIENT_BIN_DIR` | MinIO Client directory for binaries. | `${MINIO_CLIENT_BASE_DIR}/bin` | |
| `$MINIO_CLIENT_CONF_DIR` | MinIO Client directory for configuration files. | `${MINIO_CLIENT_BASE_DIR}/.mc` | &check; |
| `$MINIO_CLIENT_CONF_DIR` | MinIO Client directory for configuration files. | `/.mc` | &check; |
| `$MINIO_SERVER_HOST` | MinIO Server host. | | &check; |
| `$MINIO_SERVER_PORT_NUMBER` | MinIO Server port number. | `9000` | &check; |
| `$MINIO_SERVER_SCHEME` | MinIO Server web scheme. | `http` | &check; |
| `$MINIO_SERVER_ROOT_USER` | MinIO Server root user name. | | &check; |
| `$MINIO_SERVER_ROOT_PASSWORD` | Password for MinIO Server root user. | | &check; |
| `$MINIO_DAEMON_USER` | MinIO system user. | `minio` | |
| `$MINIO_DAEMON_GROUP` | MinIO system group. | `minio` | |
### Customizable environment variables
| Name | Description | Default Value |
|----------------------------|-------------------------------------------------|--------------------------------|
| `MINIO_CLIENT_CONF_DIR` | MinIO Client directory for configuration files. | `${MINIO_CLIENT_BASE_DIR}/.mc` |
| `MINIO_CLIENT_CONF_DIR` | MinIO Client directory for configuration files. | `/.mc` |
| `MINIO_SERVER_PORT_NUMBER` | MinIO Server port number. | `9000` |
| `MINIO_SERVER_SCHEME` | MinIO Server web scheme. | `http` |
### Read-only environment variables
| Name | Description | Value |
|-------------------------|--------------------------------------|------------------------------------|
| `MINIO_CLIENT_BASE_DIR` | MinIO Client installation directory. | `${BITNAMI_ROOT_DIR}/minio-client` |
| `MINIO_CLIENT_BIN_DIR` | MinIO Client directory for binaries. | `${MINIO_CLIENT_BASE_DIR}/bin` |
| `MINIO_DAEMON_USER` | MinIO system user. | `minio` |
| `MINIO_DAEMON_GROUP` | MinIO system group. | `minio` |
## Connecting to other containers
@ -147,6 +143,12 @@ docker run --rm --name minio-client \
Find more information about the client configuration in the [MinIO(R) Client documentation](https://docs.min.io/docs/minio-admin-complete-guide.html).
## Notable Changes
### Starting January 16, 2024
* The `docker-compose.yaml` file has been removed, as it was solely intended for internal testing purposes.
## Contributing
We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues) or submitting a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.