forked from thierrypdamiba/cognee-qdrant-starter
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 800 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 800 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
40
41
42
services:
project1:
build:
context: .
args:
INSTALL_LLAMA_CPP: "false"
env_file: .env
environment:
PROJECT: project1-procurement-search
PORT: "7777"
LLM_MODE: remote
EMBED_MODE: remote
ports:
- "7777:7777"
project2:
build:
context: .
args:
INSTALL_LLAMA_CPP: "false"
env_file: .env
environment:
PROJECT: project2-spend-analytics
PORT: "5553"
LLM_MODE: remote
EMBED_MODE: remote
ports:
- "5553:5553"
project3:
build:
context: .
args:
INSTALL_LLAMA_CPP: "false"
env_file: .env
environment:
PROJECT: project3-anomaly-detective
PORT: "6971"
LLM_MODE: remote
EMBED_MODE: remote
ports:
- "6971:6971"