-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
157 lines (149 loc) · 3.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# This file is used to build the docker containers for the frontend, client, api, proxy, and server.
services:
client:
build:
context: .
dockerfile: docker/Dockerfile.client
image: tts-agentifai:client
container_name: client_container
networks:
- tts_network
environment:
- PROXY_SERVER_PORT=50051
- PROXY_SERVER_ADDRESS=proxy_container
- USER_TOKEN=1
stdin_open: true
tty: true
frontend:
build:
context: .
dockerfile: docker/Dockerfile.app
image: tts-agentifai:frontend
container_name: frontend_container
networks:
- tts_network
depends_on:
- api
environment:
- REACT_APP_API_PORT=5000
- PORT=3000
ports:
- "3000:3000"
api:
build:
context: .
dockerfile: docker/Dockerfile.api
image: tts-agentifai:api
container_name: api_container
networks:
- tts_network
environment:
- PROXY_SERVER_ADDRESS=proxy_container
- PROXY_SERVER_PORT=50051
- PORT=5000
ports:
- "5000:5000"
proxy:
build:
context: .
dockerfile: docker/Dockerfile.proxy
image: tts-agentifai:proxy
container_name: proxy_container
networks:
- tts_network
depends_on:
- server_1
- server_2
- server_3
environment:
- PROXY_SERVER_PORT=50051
- PROXY_SERVER_CONFIG=config/proxy_config.json
ports:
- "50051:50051"
normalizer:
build:
context: .
dockerfile: docker/Dockerfile.normalizer
image: tts-agentifai:normalizer
container_name: normalizer_container
networks:
- tts_network
environment:
- NORMALIZER_SERVICE_PORT=50051
- NORMALIZER_SERVICE_RULES=config/normalization/rules.toml
server_1:
build:
context: .
dockerfile: docker/Dockerfile.server
image: tts-agentifai:server
container_name: server_container1
runtime: nvidia
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities:
- gpu
depends_on:
- normalizer
networks:
- tts_network
environment:
- SERVER_PORT=50051
- SERVER_CONFIG=config/intlex_config.json
- NORMALIZER_SERVICE_ADDRESS=normalizer_container
- NORMALIZER_SERVICE_PORT=50051
server_2:
build:
context: .
dockerfile: docker/Dockerfile.server
image: tts-agentifai:server
container_name: server_container2
runtime: nvidia
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities:
- gpu
depends_on:
- normalizer
networks:
- tts_network
environment:
- SERVER_PORT=50051
- SERVER_CONFIG=config/intlex_config.json
- NORMALIZER_SERVICE_ADDRESS=normalizer_container
- NORMALIZER_SERVICE_PORT=50051
server_3:
build:
context: .
dockerfile: docker/Dockerfile.server
image: tts-agentifai:server
container_name: server_container3
runtime: nvidia
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities:
- gpu
depends_on:
- normalizer
networks:
- tts_network
environment:
- SERVER_PORT=50051
- SERVER_CONFIG=config/intlex_config.json
- NORMALIZER_SERVICE_ADDRESS=normalizer_container
- NORMALIZER_SERVICE_PORT=50051
networks:
tts_network:
name: tts_network # Use a static name instead of default directory-based prefix
driver: bridge