-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathdocker-compose.yaml
84 lines (77 loc) · 1.44 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
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
services:
xrx-client:
container_name: xrx-client
build:
context: .
dockerfile: nextjs-client/Dockerfile
ports:
- 3000:3000
env_file:
- .env
networks:
- xrx_network
xrx-orchestrator:
container_name: xrx-orchestrator
build:
context: ./xrx-core/orchestrator
dockerfile: Dockerfile
ports:
- 8000:8000
env_file:
- .env
networks:
- xrx_network
xrx-reasoning:
container_name: xrx-reasoning
build:
context: .
dockerfile: reasoning/Dockerfile
ports:
- 8003:8003
env_file:
- .env
networks:
- xrx_network
xrx-stt:
container_name: xrx-stt
build:
context: ./xrx-core/stt
dockerfile: Dockerfile
ports:
- 8001:8001
env_file:
- .env
networks:
- xrx_network
xrx-tts:
container_name: xrx-tts
build:
context: ./xrx-core/tts
dockerfile: Dockerfile
ports:
- 8002:8002
env_file:
- .env
networks:
- xrx_network
# xrx-guardrails:
# container_name: xrx-guardrails
# build:
# context: ./xrx-core/guardrails-proxy
# dockerfile: Dockerfile
# ports:
# - 8004:8004
# env_file:
# - .env
# networks:
# - xrx_network
xrx-redis:
image: "redis:alpine"
container_name: xrx-redis
ports:
- 6379:6379
networks:
- xrx_network
networks:
xrx_network:
driver: bridge