OpenSearch/test/fixtures/minio-fixture/docker-compose.yml
Tanguy Leroux 35622747fd
Add Minio tests for searchable snapshots (#56112) (#56179)
This commit adds QA tests for searchable snapshot on MinIO,
similarly to what already exist for S3, GCS and Azure.
2020-05-05 11:40:06 +02:00

36 lines
803 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"]
minio-fixture-other:
build:
context: .
args:
bucket: "bucket"
accessKey: "access_key"
secretKey: "secret_key"
dockerfile: Dockerfile
ports:
- "9000"
command: ["server", "/minio/data"]
minio-fixture-for-snapshot-tool:
build:
context: .
args:
bucket: "bucket"
accessKey: "sn_tool_access_key"
secretKey: "sn_tool_secret_key"
dockerfile: Dockerfile
ports:
- "9000"
command: ["server", "/minio/data"]