-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
59 lines (53 loc) · 1.02 KB
/
docker-compose.yml
File metadata and controls
59 lines (53 loc) · 1.02 KB
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
version: '3'
services:
intermediary_server:
build:
context: .
dockerfile: Dockerfile.intermediary_server
ports:
- "5001:5001"
networks:
- rafa-network
streamlit_app:
build:
context: .
dockerfile: Dockerfile.streamlit_app
ports:
- "8501:8501"
networks:
- rafa-network
websocket:
build:
context: .
dockerfile: Dockerfile.websocket
ports:
- "8080:8080"
networks:
- rafa-network
data-loader-service:
build:
context: .
dockerfile: Dockerfile.data_loader_service
ports:
- "5004:5004"
networks:
- rafa-network
chroma-db-container:
image: chromadb/chroma
volumes:
- .data/chroma:/chroma/chroma
ports:
- "8000:8000"
networks:
- rafa-network
ollama-container:
image: ollama/ollama
volumes:
- ./llm/ollama:/root/ollama
ports:
- "11434:11434"
networks:
- rafa-network
networks:
rafa-network:
driver: bridge