36 lines
803 B
YAML
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"]
|