mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 21:09:06 +08:00
ba43eb4d75
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
version: '3.5'
|
|
|
|
services:
|
|
etcd:
|
|
image: quay.io/coreos/etcd:latest
|
|
command: etcd -listen-peer-urls=http://127.0.0.1:2380 -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379,http://0.0.0.0:4001 -initial-advertise-peer-urls=http://127.0.0.1:2380 --initial-cluster default=http://127.0.0.1:2380
|
|
networks:
|
|
- milvus
|
|
|
|
minio:
|
|
image: minio/minio:RELEASE.2020-12-03T00-03-10Z
|
|
environment:
|
|
MINIO_ACCESS_KEY: minioadmin
|
|
MINIO_SECRET_KEY: minioadmin
|
|
command: minio server /minio_data
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
|
interval: 30s
|
|
timeout: 20s
|
|
retries: 3
|
|
networks:
|
|
- milvus
|
|
|
|
standalone:
|
|
image: milvusdb/milvus:latest
|
|
command: ["milvus", "run", "standalone"]
|
|
environment:
|
|
ETCD_ENDPOINTS: etcd:2379
|
|
MINIO_ADDRESS: minio:9000
|
|
ports:
|
|
- "19530:19530"
|
|
depends_on:
|
|
- "etcd"
|
|
- "minio"
|
|
networks:
|
|
- milvus
|
|
|
|
networks:
|
|
milvus:
|