mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 21:48:39 +00:00
20fc1dbe18
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"]
|