This repository has been archived by the owner on Jan 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
93 lines (92 loc) · 2.14 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
version: "3.9"
services:
mongo:
image: "mongo:latest"
ports:
- 27017:27017
volumes:
- mongo-data:/data/db
- mongo-config:/configdb
environment:
- MONGO_INITDB_ROOT_USERNAME=mongo
- MONGO_INITDB_ROOT_PASSWORD=test
- MONGO_INITDB_DATABASE=mastro
catalogue:
build:
context: .
dockerfile: catalogue/Dockerfile
ports:
- 8085:8085
volumes:
- ./compose-confs/mongo/mongo-catalogue.yml:/conf/mongo-catalogue.yml
environment:
- MASTRO_CONFIG=/conf/mongo-catalogue.yml
depends_on:
- mongo
featurestore:
build:
context: .
dockerfile: featurestore/Dockerfile
ports:
- 8086:8085
volumes:
- ./compose-confs/mongo/mongo-fs.yml:/conf/mongo-fs.yml
environment:
- MASTRO_CONFIG=/conf/mongo-fs.yml
depends_on:
- mongo
metricstore:
build:
context: .
dockerfile: metricstore/Dockerfile
ports:
- 8087:8085
volumes:
- ./compose-confs/mongo/mongo-ms.yml:/conf/mongo-ms.yml
environment:
- MASTRO_CONFIG=/conf/mongo-ms.yml
depends_on:
- mongo
qdrant:
image: qdrant/qdrant:v0.8.4
ports:
- 6333:6333
- 6334:6334
environment:
- QDRANT__SERVICE__GRPC_PORT=6334
volumes:
- qdrant-data:/qdrant/storage
- ./compose-confs/qdrant/qdrant-config.yaml:/qdrant/config/production.yaml
embeddingstore:
build:
context: .
dockerfile: embeddingstore/Dockerfile
ports:
- 8089:8085
volumes:
- ./compose-confs/qdrant/qdrant-es.yml:/conf/qdrant-es.yml
environment:
- MASTRO_CONFIG=/conf/qdrant-es.yml
depends_on:
- qdrant
ui:
build:
context: ui
dockerfile: Dockerfile
ports:
- 8088:80
environment:
- NGINX_PORT=80
- CATALOGUE_URL="http://catalogue:8085/"
- FEATURESTORE_URL="http://featurestore:8085/"
- METRICSTORE_URL="http://metricstore:8085/"
- EMBEDDINGSTORE_URL="http://embeddingstore:8085/"
depends_on:
- mongo
- catalogue
- featurestore
- embeddingstore
volumes:
mongo-data:
mongo-config:
qdrant-data: