-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
47 lines (45 loc) · 1.04 KB
/
docker-compose.yml
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
40
41
42
43
44
45
46
47
version: '3'
services:
qdrant:
image: qdrant/qdrant:v0.10.1
ports:
- 6333:6333
volumes:
- 'mindwave-qdrant:/qdrant/storage'
networks:
- mindwave
weaviate-console:
image: semitechnologies/weaviate-console:latest
networks:
- mindwave
ports:
- '8081:80'
depends_on:
- weaviate
weaviate:
image: semitechnologies/weaviate:latest
networks:
- mindwave
ports:
- '8080:8080'
- "6060:6060"
restart: on-failure
volumes:
- 'mindwave-weaviate:/var/lib/weaviate'
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
AUTHENTICATION_APIKEY_ENABLED: "true"
AUTHENTICATION_APIKEY_ALLOWED_KEYS: "password"
AUTHENTICATION_APIKEY_USERS: "mindwave"
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
DEFAULT_VECTORIZER_MODULE: 'none'
CLUSTER_HOSTNAME: 'mindwave'
networks:
mindwave:
driver: bridge
volumes:
mindwave-weaviate:
driver: local
mindwave-qdrant:
driver: local