Skip to content

Commit 843700d

Browse files
committed
Add MeiliSearch service to Cloud Docker Compose and update .gitignore
1 parent 9392542 commit 843700d

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ coverage
1919
api/oracle-cloud/build
2020
api/fetch_cache
2121
api/postgres_db
22+
api/meilisearch_db
2223
api/nodemon.json
2324

2425
# web

api/oracle-cloud/docker-compose.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,12 @@ services:
2727
environment:
2828
POSTGRES_HOST_AUTH_METHOD: trust
2929
POSTGRES_DB: db
30+
meilisearch:
31+
image: getmeili/meilisearch:latest
32+
ports:
33+
- "7700:7700"
34+
volumes:
35+
- /home/ubuntu/app-data/api/meilisearch_db:/data.ms
36+
environment:
37+
MEILI_NO_ANALYTICS: true
38+
MEILI_MASTER_KEY: "default"

0 commit comments

Comments
 (0)