2020-10-27 15:51:16 +08:00
|
|
|
version: '3.5'
|
|
|
|
|
|
|
|
services:
|
|
|
|
etcd:
|
|
|
|
image: quay.io/coreos/etcd:latest
|
2020-11-12 11:18:23 +08:00
|
|
|
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
|
2020-10-27 15:51:16 +08:00
|
|
|
ports:
|
2020-11-12 11:18:23 +08:00
|
|
|
- "2379:2379"
|
|
|
|
- "2380:2380"
|
|
|
|
- "4001:4001"
|
2020-10-27 15:51:16 +08:00
|
|
|
|
|
|
|
pulsar:
|
|
|
|
image: apachepulsar/pulsar:latest
|
2021-07-01 10:30:17 +08:00
|
|
|
command: >
|
|
|
|
/bin/sh -c "
|
|
|
|
echo "" >> /pulsar/conf/standalone.conf &&
|
2021-07-01 17:30:16 +08:00
|
|
|
echo "maxMessageSize=104857600" >> /pulsar/conf/standalone.conf &&
|
2021-07-01 10:30:17 +08:00
|
|
|
echo "" >> /pulsar/conf/standalone.conf &&
|
2021-07-01 17:30:16 +08:00
|
|
|
echo "nettyMaxFrameSizeBytes=104857600" >> /pulsar/conf/standalone.conf &&
|
|
|
|
sed -i 's/^defaultRetentionTimeInMinutes=.*/defaultRetentionTimeInMinutes=10080/' /pulsar/conf/broker.conf && \
|
2021-07-01 10:30:17 +08:00
|
|
|
bin/pulsar standalone"
|
2020-10-27 15:51:16 +08:00
|
|
|
ports:
|
|
|
|
- "6650:6650"
|
|
|
|
- "18080:8080"
|
2020-11-21 17:53:05 +08:00
|
|
|
|
2020-12-07 15:22:20 +08:00
|
|
|
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
|
|
|
|
|
2021-01-11 18:35:54 +08:00
|
|
|
jaeger:
|
|
|
|
image: jaegertracing/all-in-one:latest
|
|
|
|
ports:
|
|
|
|
- "6831:6831/udp"
|
|
|
|
- "16686:16686"
|
|
|
|
|
2020-11-21 17:53:05 +08:00
|
|
|
networks:
|
2021-06-28 13:50:14 +08:00
|
|
|
default:
|
|
|
|
name: milvus_dev
|