mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
20fc1dbe18
This commit moves the MinIO docker-compose fixture from the :plugins:repository-s3 to its own :test:minio-fixture Gradle project.
10 lines
190 B
Docker
10 lines
190 B
Docker
FROM minio/minio:RELEASE.2019-01-23T23-18-58Z
|
|
|
|
ARG bucket
|
|
ARG accessKey
|
|
ARG secretKey
|
|
|
|
RUN mkdir -p /minio/data/${bucket}
|
|
ENV MINIO_ACCESS_KEY=${accessKey}
|
|
ENV MINIO_SECRET_KEY=${secretKey}
|