Skip to content

Commit

Permalink
chore: set env variables for meilisearch
Browse files Browse the repository at this point in the history
  • Loading branch information
albttx committed Apr 24, 2024
1 parent b00df64 commit 1c94e98
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
version: "3"

# gnolang/gno
services:
docusaurus:
image: ghcr.io/gnolang/docs.gno.land:latest-dev
volumes:
- .:/app/docusaurus/docs
ports:
- 3000:3000
environment:
- MEILISEARCH_URL="localhost:7700"
- MEILISEARCH_API_KEY="masterKey"
- MEILISEARCH_INDEX_UID="dev"

meilisearch:
image: getmeili/meilisearch
image: getmeili/meilisearch:latest
restart: unless-stopped
environment:
- MEILI_MASTER_KEY=xxx
- MEILI_MASTER_KEY=masterKey
- MEILI_NO_ANALYTICS=true
- MEILI_ENV=development
- MEILI_LOG_LEVEL=info
Expand All @@ -22,3 +25,4 @@ services:
- 7700:7700
#volumes:
# - ./data.ms:/data.ms

0 comments on commit 1c94e98

Please sign in to comment.