File size: 386 Bytes
8b04bf8
 
ae2e36e
 
 
 
 
 
5afef8c
 
8b04bf8
5afef8c
 
8b04bf8
 
5afef8c
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM qdrant/qdrant:v1.15.3

USER root

RUN apt-get update && apt-get install -y --no-install-recommends \
    wget \
    && rm -rf /var/lib/apt/lists/*

ENV QDRANT__STORAGE__STORAGE_PATH="/data/qdrant_data"
ENV QDRANT__STORAGE__SNAPSHOTS_PATH="/data/qdrant_snapshots"

COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

EXPOSE 6333
EXPOSE 6334

ENTRYPOINT ["/entrypoint.sh"]