Skip to content

Commit

Permalink
chore: ✨ add Docker compose for Meilisearch
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan6erbond committed May 9, 2023
1 parent 6dd4df0 commit 28878b8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions search/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.env
meili_data
13 changes: 13 additions & 0 deletions search/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: '3.9'

services:
meilisearch:
image: 'getmeili/meilisearch:v1.1'
volumes:
- './meili_data:/meili_data'
environment:
- MEILI_MASTER_KEY=$MEILI_MASTER_KEY
ports:
- '7700:7700'
tty: true
stdin_open: true

0 comments on commit 28878b8

Please sign in to comment.