forked from rapidaai/voice-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
259 lines (229 loc) · 6.26 KB
/
Copy pathdocker-compose.yml
File metadata and controls
259 lines (229 loc) · 6.26 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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
services:
postgres:
image: postgres:15-alpine
container_name: postgres
environment:
POSTGRES_USER: rapida_user
POSTGRES_PASSWORD: rapida_db_password
POSTGRES_DB: web_db
ports:
- "5432:5432"
volumes:
- ${HOME}/rapida-data/assets/db:/var/lib/postgresql/data
- ./docker/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql
networks:
- api-network
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U rapida_user -d web_db && pg_isready -U rapida_user -d assistant_db && pg_isready -U rapida_user -d integration_db && pg_isready -U rapida_user -d endpoint_db" ]
interval: 5s
timeout: 10s
retries: 3
# Redis Cache
redis:
image: redis:7-alpine
container_name: redis
ports:
- "6379:6379"
volumes:
- ${HOME}/rapida-data/assets/redis:/data
networks:
- api-network
healthcheck:
test: [ "CMD", "redis-cli", "ping" ]
interval: 10s
timeout: 5s
retries: 5
# OpenSearch
opensearch:
image: opensearchproject/opensearch:2.11.1
container_name: opensearch
environment:
- cluster.name=opensearch-cluster
- node.name=opensearch-node1
- discovery.seed_hosts=opensearch
- cluster.initial_master_nodes=opensearch-node1
- bootstrap.memory_lock=true
- "OPENSEARCH_JAVA_OPTS=-Xms512m -Xmx512m"
- plugins.security.disabled=true
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
volumes:
- ${HOME}/rapida-data/assets/opensearch:/usr/share/opensearch/data
ports:
- "9200:9200"
- "9600:9600"
networks:
- api-network
healthcheck:
test: ["CMD-SHELL", "curl -s http://localhost:9200/_cluster/health | grep -q '\"status\":\"green\"\\|\"status\":\"yellow\"'"]
interval: 10s
timeout: 5s
retries: 5
nginx:
image: nginx:alpine
container_name: nginx
ports:
- "8080:8080"
volumes:
- ./docker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ui_build:/usr/share/nginx/html:ro
- ./docker/nginx/ssl:/etc/nginx/ssl:ro
depends_on:
- web-api
- assistant-api
- integration-api
- endpoint-api
- ui
networks:
- api-network
ui:
build:
context: .
dockerfile: docker/ui/Dockerfile
container_name: ui
ports:
- "3000:3000"
depends_on:
- web-api
- integration-api
- endpoint-api
# Web API Service
web-api:
build:
context: .
dockerfile: docker/web-api/Dockerfile
container_name: web-api
ports:
- "9001:9001"
env_file:
- ./docker/web-api/.web.env
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
volumes:
- ./docker/web-api/.web.env:/opt/apps/env/.web.env:ro
- ${HOME}/rapida-data/assets:/app/rapida-data/assets
- go-mod-cache:/go/pkg/mod
networks:
- api-network
healthcheck:
test: [ "CMD", "wget", "--quiet", "--tries=1", "--method=GET", "-O", "/dev/null", "http://localhost:9001/readiness/" ]
interval: 30s
timeout: 3s
retries: 3
# Assistant API Service
assistant-api:
platform: linux/amd64
build:
context: .
dockerfile: docker/assistant-api/Dockerfile
container_name: assistant-api
ports:
- "9007:9007"
env_file:
- ./docker/assistant-api/.assistant.env
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
opensearch:
condition: service_healthy
volumes:
- ./docker/assistant-api/.assistant.env:/opt/apps/env/.assistant.env:ro
- ${HOME}/rapida-data/assets:/app/rapida-data/assets
- go-mod-cache:/go/pkg/mod
networks:
- api-network
healthcheck:
test: [ "CMD", "wget", "--quiet", "--tries=1", "--method=GET", "-O", "/dev/null", "http://localhost:9007/readiness/" ]
interval: 30s
timeout: 3s
retries: 3
# Integration API Service
integration-api:
build:
context: .
dockerfile: docker/integration-api/Dockerfile
container_name: integration-api
ports:
- "9004:9004"
env_file:
- ./docker/integration-api/.integration.env
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
volumes:
- ./docker/integration-api/.integration.env:/opt/apps/env/.integration.env:ro
- ${HOME}/rapida-data/assets:/app/rapida-data/assets
- go-mod-cache:/go/pkg/mod
networks:
- api-network
healthcheck:
test: [ "CMD", "wget", "--quiet", "--tries=1", "--method=GET", "-O", "/dev/null", "http://localhost:9004/readiness/" ]
interval: 30s
timeout: 3s
retries: 3
# Endpoint API Service
endpoint-api:
build:
context: .
dockerfile: docker/endpoint-api/Dockerfile
container_name: endpoint-api
ports:
- "9005:9005"
env_file:
- ./docker/endpoint-api/.endpoint.env
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
volumes:
- ./docker/endpoint-api/.endpoint.env:/opt/apps/env/.endpoint.env:ro
- ${HOME}/rapida-data/assets:/app/rapida-data/assets
- go-mod-cache:/go/pkg/mod
networks:
- api-network
healthcheck:
test: [ "CMD", "wget", "--quiet", "--tries=1", "--method=GET", "-O", "/dev/null", "http://localhost:9005/readiness/" ]
interval: 30s
timeout: 3s
retries: 3
document-api:
build:
context: .
dockerfile: docker/document-api/Dockerfile
container_name: document-api
ports:
- "9010:9010"
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
volumes:
- ./docker/document-api/config.yaml:/opt/apps/config.yaml:ro
- ${HOME}/rapida-data/assets:/app/rapida-data/assets
networks:
- api-network
healthcheck:
test: [ "CMD", "wget", "--quiet", "--tries=1", "--method=GET", "-O", "/dev/null", "http://localhost:9010/readiness/" ]
interval: 30s
timeout: 3s
retries: 3
networks:
api-network:
driver: bridge
volumes:
go-mod-cache:
ui_build: