-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
240 lines (229 loc) · 5.35 KB
/
docker-compose.yml
File metadata and controls
240 lines (229 loc) · 5.35 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
services:
# PostgreSQL Database
postgres:
image: postgres:15
container_name: postgres
restart: unless-stopped
env_file:
- env/postgres_env
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U obp"]
interval: 10s
timeout: 5s
retries: 5
networks:
- obp-network
# Redis Cache
redis:
image: redis:latest
container_name: redis
restart: unless-stopped
command: ["redis-server", "--appendonly", "yes"]
ports:
- "6379:6379"
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 3s
retries: 5
networks:
- obp-network
# Keycloak for OAuth2/OIDC
keycloak:
image: openbankproject/obp-keycloak:main-themed
container_name: keycloak
restart: unless-stopped
env_file:
- env/keycloak_env
ports:
- "8081:8080"
depends_on:
postgres:
condition: service_healthy
healthcheck:
test:
["CMD-SHELL", "curl -f http://localhost:8080/realms/master || exit 1"]
interval: 30s
timeout: 10s
retries: 5
start_period: 60s
networks:
- obp-network
# OBP OIDC
obp-oidc:
image: openbankproject/obp-oidc:latest
container_name: obp-oidc
restart: unless-stopped
env_file:
- env/obp_oidc_env
ports:
- "9009:9009"
healthcheck:
test:
["CMD-SHELL", "curl -f http://localhost:9009/health || exit 1"]
interval: 30s
timeout: 10s
retries: 5
start_period: 60s
networks:
- obp-network
# OBP API
obp-api:
image: openbankproject/obp-api:latest
container_name: api
restart: unless-stopped
env_file:
- env/obp_api_env
ports:
- "8080:8080"
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
# keycloak:
# condition: service_healthy
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:8080/alive.html || exit 1"]
interval: 30s
timeout: 15s
retries: 10
start_period: 180s
networks:
- obp-network
# API Explorer II
api-explorer:
image: openbankproject/api-explorer-ii:latest
container_name: api-explorer
restart: unless-stopped
env_file:
- env/api_explorer_env
ports:
- "8085:8085"
extra_hosts:
- "host.docker.internal:host-gateway"
# - "<api-hostname>:host-gateway"
# - "<keycloak-hostname>:host-gateway"
depends_on:
- obp-api
- redis
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:8085/ || exit 1"]
interval: 30s
timeout: 20s
retries: 5
start_period: 60s
networks:
- obp-network
api-explorer-nginx:
image: openbankproject/api-explorer-ii-nginx:latest
container_name: api-explorer-nginx
restart: unless-stopped
env_file:
- env/api_explorer_env
ports:
- "8086:8085"
extra_hosts:
- "host.docker.internal:host-gateway"
#- "<api-hostname>:host-gateway"
#- "<keycloak-hostname>:host-gateway"
depends_on:
- obp-api
- redis
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:8086/ || exit 1"]
interval: 30s
timeout: 20s
retries: 5
start_period: 60s
networks:
- obp-network
# API Manager II
api-manager:
image: openbankproject/api-manager-ii:latest
container_name: api-manager
restart: unless-stopped
env_file:
- env/api_manager_env
ports:
- "3003:3003"
extra_hosts:
- "host.docker.internal:host-gateway"
#- "<api-hostname>:host-gateway"
#- "<keycloak-hostname>:host-gateway"
depends_on:
- obp-api
- redis
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:3003/ || exit 1"]
interval: 30s
timeout: 15s
retries: 5
start_period: 60s
networks:
- obp-network
# API Portal
api-portal:
image: openbankproject/obp-portal:latest
container_name: portal
restart: unless-stopped
env_file:
- env/api_portal_env
ports:
- "3000:3000"
extra_hosts:
- "host.docker.internal:host-gateway"
# - "<api-hostname>:host-gateway"
# - "<keycloak-hostname>:host-gateway"
depends_on:
- obp-api
- redis
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:3000/ || exit 1"]
interval: 30s
timeout: 15s
retries: 5
start_period: 60s
networks:
- obp-network
# Opey AI Assistant
opey:
image: openbankproject/opey:latest
container_name: opey
restart: unless-stopped
env_file:
- env/opey_env
ports:
- "5000:5000"
extra_hosts:
- "host.docker.internal:host-gateway"
# - "<api-hostname>:host-gateway"
volumes:
- vectordb_data:/tmp/vectordb/
depends_on:
- obp-api
- redis
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:5000/status || exit 1"]
interval: 30s
timeout: 5s
retries: 5
start_period: 30s
networks:
- obp-network
volumes:
postgres_data:
driver: local
redis_data:
driver: local
vectordb_data:
driver: local
networks:
obp-network:
driver: bridge