OpenSearch/test/fixtures/minio-fixture/docker-compose.yml
Tanguy Leroux 20fc1dbe18
Move MinIO fixture in its own project (#49036)
This commit moves the MinIO docker-compose fixture from the
:plugins:repository-s3 to its own :test:minio-fixture Gradle project.
2019-11-13 10:03:59 -05:00

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"]