1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-08-06 22:23:10 +02:00

add meilisearch

This commit is contained in:
kev
2021-08-17 18:23:48 +08:00
parent b0ecf72180
commit 9de3153cd1
7 changed files with 25 additions and 3 deletions

2
meilisearch/README.md Normal file
View File

@ -0,0 +1,2 @@
meilisearch
===========

View File

View File

View File

View File

@ -0,0 +1,19 @@
version: "3.8"
services:
meilisearch:
image: getmeili/meilisearch
ports:
- "7700:7700"
volumes:
- ./data:/opt/meilisearch
environment:
- MEILI_ENV=development
- MEILI_HTTP_ADDR=0.0.0.0:7700
- MEILI_MASTER_KEY=xxxxxx
- MEILI_NO_ANALYTICS=true
- MEILI_NO_SENTRY=true
- MEILI_DB_PATH=data.ms/
- MEILI_DUMPS_DIR=dumps/
- MEILI_SNAPSHOT_DIR=snapshots/
working_dir: /opt/meilisearch
restart: unless-stopped