Spaces:
Runtime error
Runtime error
File size: 328 Bytes
4cbd7ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM getmeili/meilisearch:v1.10
# Set environment variables
#ENV MEILI_HOST=0.0.0.0:7700
ENV MEILI_HTTP_ADDR=0.0.0.0:7700
ENV MEILI_NO_ANALYTICS=true
# Expose the default MeiliSearch HTTP port to the host
EXPOSE 7700
# Create and set the MeiliSearch data directory
RUN mkdir -p /data
RUN chmod -R 777 /data
VOLUME ["/data"]
|