Does the Milvus standalone Docker image include MinIO? How to configure backup? #41199
Replies: 1 comment 1 reply
-
Standalone deployment:
docker standalone is a one-container deployment, etcd is embeded in the milvus container, it uses local storage to store data instead of minio. If you open the standalone_embed.sh by text editor,you will see this command:
docker-compose standalone is a three-container deployment, milvus container, etcd container, minio container In the config file of milvus-backup, the StorageType:
Technically "local storage" is supported, but seldom tested. In milvus local storage mode, all data files are stored under this path in the container: Line 91 in c15c550
In the standalone_embed.sh, the internal path /var/lib/milvus/data/ is mapped to outside ./volumes/milvus
So, I suppose the milvus-backup can work with local storage with these configurations:
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi team,
I'm currently using the standalone Milvus Docker image (installed via plain
docker run
on Linux, not usingdocker-compose
).Now, I want to enable data backup, so I looked into the

milvus-backup
component. According to the documentation, it requires access to Milvus's MinIO service for query data.However, after inspecting the Milvus standalone Docker container, I couldn't find any trace of MinIO running inside it — no open ports, no running processes, and no configuration referring to MinIO.
My questions are:
docker run
)?Any help or clarification would be greatly appreciated!
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions