Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bitnami/minio] Release 2023.9.16-debian-11-r2 #49153

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bitnami/minio/2023/debian-11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ ARG TARGETARCH

LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-09-16T11:14:30Z" \
org.opencontainers.image.created="2023-09-18T15:17:26Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="2023.9.16-debian-11-r0" \
org.opencontainers.image.ref.name="2023.9.16-debian-11-r2" \
org.opencontainers.image.title="minio" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="2023.9.16"
Expand Down
20 changes: 10 additions & 10 deletions bitnami/minio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ docker build -t bitnami/APP:latest .

If you remove the container all your data will be lost, and the next time you run the image the database will be reinitialized. To avoid this loss of data, you should mount a volume that will persist even after the container is removed.

For persistence you should mount a directory at the `/data` path.
For persistence you should mount a directory at the `/bitnami/minio/data` path.

```console
docker run --name minio \
--publish 9000:9000 \
--publish 9001:9001 \
--volume /path/to/minio-persistence:/data \
--volume /path/to/minio-persistence:/bitnami/minio/data \
bitnami/minio:latest
```

Expand All @@ -92,7 +92,7 @@ services:
minio:
...
volumes:
- /path/to/minio-persistence:/data
- /path/to/minio-persistence:/bitnami/minio/data
...
```

Expand Down Expand Up @@ -312,23 +312,23 @@ services:
minio-0:
image: 'bitnami/minio:latest'
volumes:
- 'minio_0_data_0:/data-0'
- 'minio_0_data_1:/data-1'
- 'minio_0_data_0:/bitnami/minio/data-0'
- 'minio_0_data_1:/bitnami/minio/data-1'
environment:
- MINIO_ROOT_USER=minio
- MINIO_ROOT_PASSWORD=miniosecret
- MINIO_DISTRIBUTED_MODE_ENABLED=yes
- MINIO_DISTRIBUTED_NODES=minio-{0...1}/data-{0...1}
- MINIO_DISTRIBUTED_NODES=minio-{0...1}/bitnami/minio/data-{0...1}
minio-1:
image: 'bitnami/minio:latest'
volumes:
- 'minio_1_data_0:/data-0'
- 'minio_1_data_1:/data-1'
- 'minio_1_data_0:/bitnami/minio/data-0'
- 'minio_1_data_1:/bitnami/minio/data-1'
environment:
- MINIO_ROOT_USER=minio
- MINIO_ROOT_PASSWORD=miniosecret
- MINIO_DISTRIBUTED_MODE_ENABLED=yes
- MINIO_DISTRIBUTED_NODES=minio-{0...1}/data-{0...1}
- MINIO_DISTRIBUTED_NODES=minio-{0...1}/bitnami/minio/data-{0...1}
volumes:
minio_0_data_0:
driver: local
Expand All @@ -355,7 +355,7 @@ docker run --name minio \
--env MINIO_FORCE_NEW_KEYS="yes" \
--env MINIO_ROOT_USER="new-minio-root-user" \
--env MINIO_ROOT_PASSWORD="new-minio-root-password" \
--volume /path/to/minio-persistence:/data \
--volume /path/to/minio-persistence:/bitnami/minio/data \
bitnami/minio:latest
```

Expand Down
Loading