-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-stack.yml
More file actions
234 lines (222 loc) · 6.56 KB
/
docker-stack.yml
File metadata and controls
234 lines (222 loc) · 6.56 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
version: "3.9"
# ===============================================
# CONFIGS (your .env file loaded as a swarm config)
# ===============================================
configs:
snowguard_env_vars:
external: true
# ===============================================
# VOLUMES
# ===============================================
volumes:
postgres-data:
# ===============================================
# NETWORKS
# ===============================================
networks:
snowguard-net:
driver: overlay
attachable: true
# ===============================================
# SERVICES
# ===============================================
services:
# ===============================================
# POSTGRES
# ===============================================
postgres:
image: postgres:18-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
- postgres-data:/var/lib/postgresql/data
- ./init-databases.sql:/docker-entrypoint-initdb.d/init.sql
networks:
- snowguard-net
deploy:
replicas: 1
restart_policy:
condition: on-failure
# ===============================================
# REDIS
# ===============================================
redis:
image: redis:8-alpine
command: ["redis-server", "--appendonly", "yes"]
networks:
- snowguard-net
deploy:
replicas: 1
# ===============================================
# CONFIG SERVICE
# ===============================================
config-service:
image: rahijamil/snowguard-config-service
volumes:
- ./config-repo:/app/config-repo
networks:
- snowguard-net
configs:
- source: snowguard_env_vars
target: /app/.env
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 30s
max_attempts: 3
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8888/actuator/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 120s
# ===============================================
# DISCOVERY SERVICE
# ===============================================
discovery-service:
image: rahijamil/snowguard-discovery-service
environment:
EUREKA_INSTANCE_HOSTNAME: discovery-service
EUREKA_CLIENT_SERVICEURL_DEFAULTZONE: http://discovery-service:8761/eureka/
networks:
- snowguard-net
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 30s
max_attempts: 3
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8761/actuator/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 120s
# ===============================================
# USER SERVICE
# ===============================================
user-service:
image: rahijamil/snowguard-user-service
environment:
SPRING_CONFIG_IMPORT: optional:configserver:http://config-service:8888
SPRING_DATASOURCE_URL: jdbc:postgresql://postgres:5432/userdb
SPRING_DATASOURCE_USERNAME: postgres
SPRING_DATASOURCE_PASSWORD: postgres
SPRING_REDIS_HOST: redis
SPRING_REDIS_PORT: 6379
EUREKA_CLIENT_SERVICEURL_DEFAULTZONE: http://discovery-service:8761/eureka/
networks:
- snowguard-net
configs:
- source: snowguard_env_vars
target: /app/.env
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 30s
max_attempts: 3
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8081/actuator/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 120s
# ===============================================
# HAZARD SERVICE
# ===============================================
hazard-service:
image: rahijamil/snowguard-hazard-service
environment:
SPRING_CONFIG_IMPORT: optional:configserver:http://config-service:8888
SPRING_DATASOURCE_URL: jdbc:postgresql://postgres:5432/hazarddb
SPRING_DATASOURCE_USERNAME: postgres
SPRING_DATASOURCE_PASSWORD: postgres
SPRING_REDIS_HOST: redis
SPRING_REDIS_PORT: 6379
EUREKA_CLIENT_SERVICEURL_DEFAULTZONE: http://discovery-service:8761/eureka/
env_file:
- .env
networks:
- snowguard-net
configs:
- source: snowguard_env_vars
target: /app/.env
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 30s
max_attempts: 3
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8082/api/hazards/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 120s
# ===============================================
# AI SERVICE
# ===============================================
ai-service:
image: rahijamil/snowguard-ai-service
environment:
DATABASE_URL: postgresql://postgres:postgres@postgres:5432/aidb
USER_SERVICE_URL: http://user-service:8081
HAZARD_SERVICE_URL: http://hazard-service:8082
networks:
- snowguard-net
configs:
- source: snowguard_env_vars
target: /app/.env
deploy:
replicas: 1
# ===============================================
# NOTIFICATION SERVICE
# ===============================================
notification-service:
image: rahijamil/snowguard-notification-service
environment:
DATABASE_URL: postgresql://postgres:postgres@postgres:5432/notificationdb
REDIS_HOST: redis
REDIS_PORT: 6379
USER_SERVICE_URL: http://user-service:8081
HAZARD_SERVICE_URL: http://hazard-service:8082
networks:
- snowguard-net
configs:
- source: snowguard_env_vars
target: /app/.env
deploy:
replicas: 1
# ===============================================
# API GATEWAY
# ===============================================
api-gateway:
image: rahijamil/snowguard-api-gateway
# build: ./api-gateway
environment:
SPRING_REDIS_HOST: redis
SPRING_REDIS_PORT: 6379
SPRING_CONFIG_IMPORT: optional:configserver:http://config-service:8888
EUREKA_CLIENT_SERVICEURL_DEFAULTZONE: http://discovery-service:8761/eureka/
ports:
- "8000:8000"
networks:
- snowguard-net
configs:
- source: snowguard_env_vars
target: /app/.env
deploy:
replicas: 1
restart_policy:
condition: on-failure
delay: 30s
max_attempts: 3
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/gateway/status"]
interval: 30s
timeout: 10s
retries: 3
start_period: 120s