mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
13f41f160b
Signed-off-by: Cai Yudong <yudong.cai@zilliz.com>
66 lines
1.5 KiB
YAML
66 lines
1.5 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
|
|
ports:
|
|
- "2379:2379"
|
|
- "2380:2380"
|
|
- "4001:4001"
|
|
networks:
|
|
- milvus
|
|
|
|
pulsar:
|
|
image: apachepulsar/pulsar:latest
|
|
command: bin/pulsar standalone
|
|
ports:
|
|
- "6650:6650"
|
|
- "18080:8080"
|
|
networks:
|
|
- milvus
|
|
|
|
minio:
|
|
image: minio/minio:RELEASE.2020-12-03T00-03-10Z
|
|
ports:
|
|
- "9000:9000"
|
|
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
|
|
|
|
jaeger:
|
|
image: jaegertracing/all-in-one:latest
|
|
ports:
|
|
- "6831:6831/udp"
|
|
- "16686:16686"
|
|
networks:
|
|
- milvus
|
|
|
|
standalone:
|
|
image: ${TARGET_DOCKER_IMAGE}
|
|
command: ["/milvus-distributed/bin/singlenode"]
|
|
environment:
|
|
PULSAR_ADDRESS: ${PULSAR_ADDRESS}
|
|
ETCD_ADDRESS: ${ETCD_ADDRESS}
|
|
MINIO_ADDRESS: ${MINIO_ADDRESS}
|
|
ports:
|
|
- "19530:19530"
|
|
depends_on:
|
|
- "etcd"
|
|
- "pulsar"
|
|
- "minio"
|
|
- "jaeger"
|
|
networks:
|
|
- milvus
|
|
|
|
networks:
|
|
milvus:
|