abctest / Dockerfile
ppsingh's picture
Create Dockerfile
41240a1 verified
raw
history blame
215 Bytes
FROM qdrant/qdrant:latest
# Expose Qdrant port
EXPOSE 6333
# Create data directory
RUN mkdir -p /qdrant/storage
# Set working directory
WORKDIR /qdrant
# Start Qdrant server
CMD ["./qdrant", "--host", "0.0.0.0"]