@@ -12,13 +12,11 @@ services:
1212 - .env.dev
1313 volumes :
1414 - logs:/app/logs
15- - .:/app
1615 - sqlite-data:/root/.crawl4ai
1716 - fastembed:/tmp/fastembed_cache/
1817 ports :
1918 - " 8501:8501"
2019 depends_on :
21- - standalone
2220 - redis
2321 healthcheck :
2422 test : ["CMD", "curl", "--fail", "http://localhost:8501/_stcore/health"]
@@ -65,65 +63,65 @@ services:
6563 - default
6664 restart : always
6765
68- etcd :
69- container_name : milvus-etcd
70- image : quay.io/coreos/etcd:v3.5.16
71- environment :
72- - ETCD_AUTO_COMPACTION_MODE=revision
73- - ETCD_AUTO_COMPACTION_RETENTION=1000
74- - ETCD_QUOTA_BACKEND_BYTES=4294967296
75- - ETCD_SNAPSHOT_COUNT=50000
76- volumes :
77- - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/etcd:/etcd
78- command : etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd
79- healthcheck :
80- test : ["CMD", "etcdctl", "endpoint", "health"]
81- interval : 30s
82- timeout : 20s
83- retries : 3
66+ # etcd:
67+ # container_name: milvus-etcd
68+ # image: quay.io/coreos/etcd:v3.5.16
69+ # environment:
70+ # - ETCD_AUTO_COMPACTION_MODE=revision
71+ # - ETCD_AUTO_COMPACTION_RETENTION=1000
72+ # - ETCD_QUOTA_BACKEND_BYTES=4294967296
73+ # - ETCD_SNAPSHOT_COUNT=50000
74+ # volumes:
75+ # - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/etcd:/etcd
76+ # command: etcd -advertise-client-urls=http://127.0.0.1:2379 -listen-client-urls http://0.0.0.0:2379 --data-dir /etcd
77+ # healthcheck:
78+ # test: ["CMD", "etcdctl", "endpoint", "health"]
79+ # interval: 30s
80+ # timeout: 20s
81+ # retries: 3
8482
85- minio :
86- container_name : milvus-minio
87- image : minio/minio:RELEASE.2023-03-20T20-16-18Z
88- environment :
89- MINIO_ACCESS_KEY : minioadmin
90- MINIO_SECRET_KEY : minioadmin
91- ports :
92- - " 9001:9001"
93- - " 9000:9000"
94- volumes :
95- - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/minio:/minio_data
96- command : minio server /minio_data --console-address ":9001"
97- healthcheck :
98- test : ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
99- interval : 30s
100- timeout : 20s
101- retries : 3
83+ # minio:
84+ # container_name: milvus-minio
85+ # image: minio/minio:RELEASE.2023-03-20T20-16-18Z
86+ # environment:
87+ # MINIO_ACCESS_KEY: minioadmin
88+ # MINIO_SECRET_KEY: minioadmin
89+ # ports:
90+ # - "9001:9001"
91+ # - "9000:9000"
92+ # volumes:
93+ # - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/minio:/minio_data
94+ # command: minio server /minio_data --console-address ":9001"
95+ # healthcheck:
96+ # test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
97+ # interval: 30s
98+ # timeout: 20s
99+ # retries: 3
102100
103- standalone :
104- container_name : milvus-standalone
105- image : milvusdb/milvus:v2.5.4
106- command : ["milvus", "run", "standalone"]
107- security_opt :
108- - seccomp:unconfined
109- environment :
110- ETCD_ENDPOINTS : etcd:2379
111- MINIO_ADDRESS : minio:9000
112- volumes :
113- - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/milvus:/var/lib/milvus
114- - ./milvus.yaml:/milvus/configs/milvus.yaml
115- healthcheck :
116- test : ["CMD", "curl", "-f", "http://localhost:9091/healthz"]
117- interval : 30s
118- start_period : 90s
119- timeout : 20s
120- retries : 3
121- ports :
122- - " 19530:19530"
123- - " 9091:9091"
124- depends_on :
125- - " etcd"
126- - " minio"
101+ # standalone:
102+ # container_name: milvus-standalone
103+ # image: milvusdb/milvus:v2.5.4
104+ # command: ["milvus", "run", "standalone"]
105+ # security_opt:
106+ # - seccomp:unconfined
107+ # environment:
108+ # ETCD_ENDPOINTS: etcd:2379
109+ # MINIO_ADDRESS: minio:9000
110+ # volumes:
111+ # - ${DOCKER_VOLUME_DIRECTORY:-.}/volumes/milvus:/var/lib/milvus
112+ # - ./milvus.yaml:/milvus/configs/milvus.yaml
113+ # healthcheck:
114+ # test: ["CMD", "curl", "-f", "http://localhost:9091/healthz"]
115+ # interval: 30s
116+ # start_period: 90s
117+ # timeout: 20s
118+ # retries: 3
119+ # ports:
120+ # - "19530:19530"
121+ # - "9091:9091"
122+ # depends_on:
123+ # - "etcd"
124+ # - "minio"
127125
128126volumes :
129127 sqlite-data :
0 commit comments