Skip to content

Commit e85a64d

Browse files
bringing in ai-labs/vector_dbs/milvus to compose stack
Signed-off-by: greg pereira <[email protected]>
1 parent 8cdfc43 commit e85a64d

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

ui/compose.ui

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,26 @@ services:
8181
devices:
8282
- driver: nvidia
8383
capabilities: [gpu]
84+
85+
milvus:
86+
container_name: milvus-standalone
87+
image: quay.io/ai-lab/vector_dbs/milvus@sha256:7d0be442cbcafeebdb056c56b16f7f7fe96b235d7a82cfdd57edc302042d00eb
88+
security_opt:
89+
- seccomp:unconfined
90+
environment:
91+
ETCD_USE_EMBED: "true"
92+
ETCD_CONFIG_PATH: "/milvus/configs/embedEtcd.yaml"
93+
COMMON_STORAGETYPE: "local"
94+
volumes:
95+
- /home/fedora/milvus-volume:/var/lib/milvus
96+
ports:
97+
- 19530:19530
98+
- 9091:9091
99+
- 2379:2379
100+
healthcheck:
101+
test: ["CMD-SHELL", "curl -f http://localhost:9091/healthz || exit 1"]
102+
interval: 30s
103+
timeout: 20s
104+
retries: 3
105+
start_period: 90s
106+
command: milvus run standalone

0 commit comments

Comments
 (0)