-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (35 loc) · 854 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (35 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
version: '3.8'
services:
meilisearch:
image: getmeili/meilisearch:latest
container_name: meilisearch
environment:
- MEILI_MASTER_KEY=${MEILI_MASTER_KEY:-masterKey}
- MEILI_NO_ANALYTICS=true
- MEILI_ENV=development
ports:
- '7700:7700'
volumes:
- meilisearch_data:/meili_data
restart: unless-stopped
networks:
- meilisearch-network
meilisearch-ts-mcp:
build:
context: .
dockerfile: Dockerfile
container_name: meilisearch-ts-mcp
environment:
- MEILISEARCH_HOST=http://meilisearch:7700
- MEILISEARCH_API_KEY=${MEILI_MASTER_KEY:-masterKey}
- MEILISEARCH_TIMEOUT=5000
depends_on:
- meilisearch
networks:
- meilisearch-network
volumes:
meilisearch_data:
driver: local
networks:
meilisearch-network:
driver: bridge