File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -81,3 +81,26 @@ services:
81
81
devices:
82
82
- driver: nvidia
83
83
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
You can’t perform that action at this time.
0 commit comments