mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-03 09:29:11 +00:00
This commit moves the MinIO docker-compose fixture from the :plugins:repository-s3 to its own :test:minio-fixture Gradle project.
14 lines
263 B
YAML
14 lines
263 B
YAML
version: '3'
|
|
services:
|
|
minio-fixture:
|
|
build:
|
|
context: .
|
|
args:
|
|
bucket: "bucket"
|
|
accessKey: "access_key"
|
|
secretKey: "secret_key"
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "9000"
|
|
command: ["server", "/minio/data"]
|