mirror of https://github.com/milvus-io/milvus.git
16 lines
555 B
YAML
16 lines
555 B
YAML
- name: "minio"
|
|
docker_container:
|
|
name: minio
|
|
image: minio/minio:RELEASE.2022-03-17T06-34-49Z
|
|
env:
|
|
MINIO_ACCESS_KEY: minioadmin
|
|
MINIO_SECRET_KEY: minioadmin
|
|
command: "minio server /minio_data"
|
|
# volumes:
|
|
# - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/minio:/minio_data
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:9000/minio/health/live"]
|
|
interval: 30s
|
|
timeout: 20s
|
|
retries: 3
|
|
network_mode: "{{dependencies_network}}" #Use the network which defined as variable in Inventory. |