forked from npatta01/search-engine-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
51 lines (46 loc) · 1.15 KB
/
docker-compose.yaml
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
48
49
50
51
version: "3.0"
services:
elasticsearch:
container_name: es-container
image: docker.elastic.co/elasticsearch/elasticsearch:8.4.3
environment:
- xpack.security.enabled=false
- "discovery.type=single-node"
ports:
- 9200:9200
volumes:
- esdata:/usr/share/elasticsearch/data
# milvus:
# container_name: milvus
# image: milvusdb/milvus:1.1.1-cpu-d061621-330cc6
# ports:
# - 19530:19530
# - 19121:19121
# volumes:
# - milvusdata:/var/lib/milvus
milvus:
container_name: milvus
build:
context: docker_milvus
ports:
- 19530:19530
- 19121:19121
volumes:
- milvusdata:/var/lib/milvus
weaviate:
image: semitechnologies/weaviate:1.14.0
ports:
- 8081:8080
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
DEFAULT_VECTORIZER_MODULE: 'none'
ENABLE_MODULES: ''
CLUSTER_HOSTNAME: 'node1'
volumes:
- weaviatedata:/var/lib/weaviate
volumes:
esdata:
weaviatedata:
milvusdata: