-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
64 lines (58 loc) · 987 Bytes
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
version: "3.8"
networks:
novanet:
driver: bridge
services:
redis:
image: redis/redis-stack-server:latest
volumes:
- redis_data:/data/
networks:
- novanet
ports:
- '6379:6379'
restart: always
chroma:
image: ghcr.io/chroma-core/chroma:latest
volumes:
- chroma_data:/chroma/
networks:
- novanet
ports:
- '8000:8000'
restart: always
app:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./knowledge_base/:/app/knowledge_base/
ports:
- 8888:8888
networks:
- novanet
depends_on:
- redis
- chroma
user: root
env_file:
- .env
tts-api:
build: './tts'
ports:
- '8889:8889'
networks:
novanet:
aliases:
- tts.local
stt-api:
build: './stt'
ports:
- '8890:8890'
networks:
novanet:
aliases:
- stt.local
volumes:
redis_data:
chroma_data: