Created
May 13, 2022 04:27
Revisions
-
vaibhavpandeyvpz revised this gist
May 13, 2022 . No changes.There are no files selected for viewing
-
vaibhavpandeyvpz created this gist
May 13, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ FROM ubuntu WORKDIR /meilisearch RUN apt-get update && \ apt-get install -y libc6-dev wget RUN wget -O exe https://github.com/meilisearch/MeiliSearch/releases/download/v0.12.0/meilisearch-linux-armv8 && \ chmod a+x exe RUN mkdir /data.ms ENV MEILI_DB_PATH=/data.ms ENV MEILI_HTTP_ADDR=0.0.0.0:7700 EXPOSE 7700 CMD ["/meilisearch/exe"] This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ version: '3' services: meilisearch: build: context: . dockerfile: Dockerfile.ms environment: MEILI_MASTER_KEY: masterKey ports: - '7700:7700' volumes: - meilisearch-data:/data.ms volumes: meilisearch-data: