Trying to run database in our cluster is not working, But it is working in local #35378
Unanswered
nikhilreddy-pottanig
asked this question in
Q&A and General discussion
Replies: 3 comments 7 replies
-
Seems is not a standard milvus deployment. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Tired running this way commands to install Milvus wasn't working RUN apt-get update && apt-get install -y |
Beta Was this translation helpful? Give feedback.
4 replies
-
When trying to use shell in the above container. When typing milvus nothing is happening |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
FROM milvusdb/milvus:latest as milvus_base
Install curl for healthcheck
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
Set environment variables
ENV ETCD_USE_EMBED=true
ENV COMMON_STORAGETYPE=local
ENV MILVUS_STORAGE_PATH=/var/lib/milvus
Create directory for persistent storage
RUN mkdir -p /var/lib/milvus
Expose necessary ports
EXPOSE 19530 9091 2379
# Run Milvus standalone
CMD ["milvus", "run", "standalone"]
Beta Was this translation helpful? Give feedback.
All reactions