meilisearch / Dockerfile
Fuegovic's picture
Update Dockerfile
6aaba8f
raw
history blame
No virus
406 Bytes
# Use the official MeiliSearch image as a base
FROM getmeili/meilisearch:v1.0
# Set environment variables
ENV MEILI_HOST=http://meilisearch:7700
ENV MEILI_HTTP_ADDR=meilisearch:7700
ENV MEILI_NO_ANALYTICS=true
# Create and set the MeiliSearch data directory
RUN mkdir -p /meili_data
RUN chmod -R 777 /meili_data
VOLUME ["/meili_data"]
# The base image already defines an ENTRYPOINT that runs MeiliSearch