-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
227 lines (215 loc) · 5.69 KB
/
Copy pathdocker-compose.yml
File metadata and controls
227 lines (215 loc) · 5.69 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
services:
postgres:
image: postgres:16-alpine
container_name: saveops-postgres
environment:
POSTGRES_USER: saveops
POSTGRES_PASSWORD: saveops
POSTGRES_DB: saveops
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
- ./docker/postgres/init.sql:/docker-entrypoint-initdb.d/01-init.sql:ro
healthcheck:
test: ["CMD-SHELL", "pg_isready -U saveops"]
interval: 10s
timeout: 5s
retries: 5
rabbitmq:
image: rabbitmq:3.13-management-alpine
container_name: saveops-rabbitmq
environment:
RABBITMQ_DEFAULT_USER: saveops
RABBITMQ_DEFAULT_PASS: saveops
ports:
- "5672:5672"
- "15672:15672"
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "-q", "ping"]
interval: 10s
timeout: 5s
retries: 5
redis:
image: redis:7.4-alpine
container_name: saveops-redis
command: ["redis-server", "--appendonly", "yes"]
ports:
- "6379:6379"
volumes:
- redis_data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
account-service:
build:
context: .
dockerfile: services/account-service/Dockerfile
container_name: saveops-account-service
environment:
POSTGRES_HOST: postgres
POSTGRES_DB: saveops_account
POSTGRES_USER: saveops
POSTGRES_PASSWORD: saveops
REDIS_HOST: redis
RABBITMQ_HOST: rabbitmq
RABBITMQ_USER: saveops
RABBITMQ_PASSWORD: saveops
ports:
- "8081:8081"
- "9091:9091"
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
rabbitmq:
condition: service_healthy
goal-service:
build:
context: .
dockerfile: services/goal-service/Dockerfile
container_name: saveops-goal-service
environment:
POSTGRES_HOST: postgres
POSTGRES_DB: saveops_goal
POSTGRES_USER: saveops
POSTGRES_PASSWORD: saveops
ACCOUNT_GRPC_URL: static://account-service:9091
ports:
- "8082:8082"
- "9092:9092"
depends_on:
postgres:
condition: service_healthy
account-service:
condition: service_started
transaction-simulator-service:
build:
context: .
dockerfile: services/transaction-simulator-service/Dockerfile
container_name: saveops-transaction-simulator-service
environment:
RABBITMQ_HOST: rabbitmq
RABBITMQ_USER: saveops
RABBITMQ_PASSWORD: saveops
ports:
- "8083:8083"
depends_on:
rabbitmq:
condition: service_healthy
interest-service:
build:
context: .
dockerfile: services/interest-service/Dockerfile
container_name: saveops-interest-service
environment:
POSTGRES_HOST: postgres
POSTGRES_DB: saveops_interest
POSTGRES_USER: saveops
POSTGRES_PASSWORD: saveops
REDIS_HOST: redis
RABBITMQ_HOST: rabbitmq
RABBITMQ_USER: saveops
RABBITMQ_PASSWORD: saveops
ACCOUNT_GRPC_URL: static://account-service:9091
ports:
- "8084:8084"
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
rabbitmq:
condition: service_healthy
account-service:
condition: service_started
notification-service:
build:
context: .
dockerfile: services/notification-service/Dockerfile
container_name: saveops-notification-service
environment:
RABBITMQ_HOST: rabbitmq
RABBITMQ_USER: saveops
RABBITMQ_PASSWORD: saveops
ports:
- "8085:8085"
depends_on:
rabbitmq:
condition: service_healthy
audit-service:
build:
context: .
dockerfile: services/audit-service/Dockerfile
container_name: saveops-audit-service
environment:
POSTGRES_HOST: postgres
POSTGRES_DB: saveops_audit
POSTGRES_USER: saveops
POSTGRES_PASSWORD: saveops
RABBITMQ_HOST: rabbitmq
RABBITMQ_USER: saveops
RABBITMQ_PASSWORD: saveops
ports:
- "8086:8086"
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
api-gateway:
build:
context: .
dockerfile: services/api-gateway/Dockerfile
container_name: saveops-api-gateway
environment:
REDIS_HOST: redis
ACCOUNT_GRPC_URL: static://account-service:9091
GOAL_GRPC_URL: static://goal-service:9092
SIMULATOR_URL: http://transaction-simulator-service:8083
AUDIT_URL: http://audit-service:8086
ports:
- "8080:8080"
depends_on:
redis:
condition: service_healthy
account-service:
condition: service_started
goal-service:
condition: service_started
transaction-simulator-service:
condition: service_started
audit-service:
condition: service_started
prometheus:
image: prom/prometheus:v2.55.1
container_name: saveops-prometheus
command:
- "--config.file=/etc/prometheus/prometheus.yml"
volumes:
- ./docker/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
ports:
- "9090:9090"
depends_on:
api-gateway:
condition: service_started
grafana:
image: grafana/grafana:11.3.1
container_name: saveops-grafana
environment:
GF_SECURITY_ADMIN_USER: admin
GF_SECURITY_ADMIN_PASSWORD: admin
volumes:
- ./docker/grafana/provisioning:/etc/grafana/provisioning:ro
- ./docker/grafana/dashboards:/var/lib/grafana/dashboards:ro
ports:
- "3000:3000"
depends_on:
prometheus:
condition: service_started
volumes:
postgres_data:
redis_data: