imCuteCat/meilisearch_cortex
0
1# Use the official MeiliSearch image as a base2FROM getmeili/meilisearch:latest3 4# Set environment variables5#ENV MEILI_HOST=0.0.0.0:77006ENV MEILI_HTTP_ADDR=0.0.0.0:77007ENV MEILI_NO_ANALYTICS=true8 9# Expose the default MeiliSearch HTTP port to the host10EXPOSE 770011 12# Create and set the MeiliSearch data directory13RUN mkdir -p /meili_data14RUN chmod -R 777 /meili_data15VOLUME ["/meili_data"]16 17# The base image already defines an ENTRYPOINT that runs MeiliSearch