-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On top of that addressing MinIO warning: - setup ulimits - use of static console port - do not use deprecated argument names With regard to static ports this is related to a change MinIO introduced in RELEASE.2021-07-08T01-15-01Z where the console was embedded into the server itself. For more details visit: https://docs.min.io/minio/baremetal/console/minio-console.html We could let the port be assigned dynamically, however, when we set it statically it can give user an option to make use of the console web UI for MinIO troubleshooting (though I think the ports still need to be exported in this case). Closes #3539 Signed-off-by: Lukáš Vlček <[email protected]> (cherry picked from commit 9af3407)
- Loading branch information
1 parent
8b53c51
commit 7173680
Showing
2 changed files
with
27 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM minio/minio:RELEASE.2019-01-23T23-18-58Z | ||
FROM minio/minio:RELEASE.2022-06-25T15-50-16Z | ||
|
||
ARG bucket | ||
ARG accessKey | ||
ARG secretKey | ||
|
||
RUN mkdir -p /minio/data/${bucket} | ||
ENV MINIO_ACCESS_KEY=${accessKey} | ||
ENV MINIO_SECRET_KEY=${secretKey} | ||
ENV MINIO_ROOT_USER=${accessKey} | ||
ENV MINIO_ROOT_PASSWORD=${secretKey} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters