-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yml
236 lines (218 loc) · 8.16 KB
/
docker-compose.yml
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
version: '3.7'
services:
#############################################################################################
### DPS service API ###
#############################################################################################
service-api:
image: nginx:latest
volumes:
- ./src/service-api/conf/nginx.conf:/etc/nginx/nginx.conf
# TODO: renable sharing logs
# - ./nginx-log:/var/log/nginx
ports:
- 5050:80
networks:
- dps-net
#############################################################################################
### DPS service API SPLUNK UNIVERSAL FORWARDER ###
#############################################################################################
service-api-universalforwarder:
image: splunk/universalforwarder:7.3.2
platform: linux/amd64
volumes:
- ./.splunk/conf/inputs.conf:/opt/splunkforwarder/etc/system/local/inputs.conf
- ./.splunk/conf/outputs.conf:/opt/splunkforwarder/etc/system/local/outputs.conf
# TODO: renable sharing logs
# - ./nginx-log:/var/log/nginx
environment:
- SPLUNK_START_ARGS=--accept-license
- SPLUNK_PASSWORD=$SPLUNK_PWD
ports:
- "8089"
- "9997"
networks:
- dps-net
#############################################################################################
### DPS payment service ###
#############################################################################################
payment-service:
build:
args:
- MVN_PROFILES=dps-payment-service,openshift
- DPS_SERVICE_NAME=dps-payment-service
environment:
- spring_profiles_active=cloud,splunk
- BAMBORA_PAYMENT_ENDPOINT=https://example.com
- BAMBORA_MERCHANT_ID=changeme
- BAMBORA_HASHKEY=SUPERHASHKEY
- CRC_ENDPOINT_APPROVED=http://approved
- CRC_ENDPOINT_DECLINED=http://declined
- CRC_ENDPOINT_ERROR=http://error
- SPLUNK_URL=https://dps-splunk:8088
- SPLUNK_TOKEN=${SPLUNK_TOKEN}
- SWAGGER_UI_ENABLED=true
ports:
- "8084:8080"
networks:
- dps-net
#############################################################################################
### FIGARO validation service ###
#############################################################################################
fig-validation-service:
build:
args:
- spring_profiles_active=cloud
- MVN_PROFILES=figaro-validation-service,openshift
- DPS_SERVICE_NAME=figaro-validation-service
environment:
- SWAGGER_UI_ENABLED=true
- FIGCR_BASE_PATH=${FIGCR_BASE_PATH}
ports:
- "8082:8080"
networks:
- dps-net
#############################################################################################
### DPS validation service (Driver Fitness Case Management Service) ###
#############################################################################################
dps-validation-service:
build:
args:
- spring_profiles_active=cloud
- MVN_PROFILES=dps-validation-service,splunk
- DPS_SERVICE_NAME=dps-validation-service
environment:
- SWAGGER_UI_ENABLED=true
- DFCMS_BASE_PATH=${DFCMS_BASE_PATH}
- DFCMS_EIGHT_DIGIT_LICENSE=${DFCMS_EIGHT_DIGIT_LICENSE}
ports:
- "8083:8080"
networks:
- dps-net
#############################################################################################
### DPS Notification Service ###
#############################################################################################
dps-notification-service:
build:
args:
- MVN_PROFILES=dps-notification-service
- DPS_SERVICE_NAME=dps-notification-service
environment:
- RABBITMQ_HOST=rabbitmq
ports:
- "5054:8080"
networks:
- dps-net
#############################################################################################
### SPD Notification Worker ###
#############################################################################################
spd-notification-worker:
build:
args:
- MVN_PROFILES=spd-notification-worker
- DPS_SERVICE_NAME=spd-notification-worker
ports:
- "5055:8080"
environment:
- RABBITMQ_HOST=rabbitmq
networks:
- dps-net
#############################################################################################
### VIPS Notification Worker ###
#############################################################################################
vips-notification-worker:
build:
args:
- MVN_PROFILES=vips-notification-worker
- DPS_SERVICE_NAME=vips-notification-worker
ports:
- "5056:8080"
environment:
- RABBITMQ_HOST=rabbitmq
- FIGCR_BASE_PATH=${FIGCR_BASE_PATH}
- VIPS_BASE_PATH=${VIPS_BASE_PATH}
- VIPS_USERNAME=${VIPS_USERNAME}
- VIPS_PASSWORD=${VIPS_PASSWORD}
networks:
- dps-net
#############################################################################################
### SFTP SERVER ###
#############################################################################################
dps-sftp:
image: atmoz/sftp
platform: linux/amd64
ports:
- "22:22"
command: admin:admin:::upload
networks:
- dps-net
#############################################################################################
### RABBIT MQ SERVER ###
#############################################################################################
dps-rabbitmq:
image: rabbitmq:3.8-management
container_name: rabbitmq
hostname: rabbitmq
platform: linux/amd64
ports:
- 5672:5672
- 15672:15672
volumes:
- data-rabbit:/var/lib/rabbitmq/mnesia/rabbit@app-rabbitmq:cached
restart: always
networks:
- dps-net
#############################################################################################
### SPLUNK DEV BOX ###
#############################################################################################
dps-splunk:
image: splunk/splunk:8.2.5
platform: linux/amd64
environment:
- SPLUNK_PASSWORD=${SPLUNK_PWD}
- SPLUNK_START_ARGS=--accept-license
ports:
- "8000:8000"
- "8001:8001"
- "8088:8088"
- "8089:8089"
- "9997:9997"
networks:
- dps-net
#############################################################################################
### REDIS SERVER ###
#############################################################################################
dps-redis:
container_name: redis
image: redis
command: redis-server --requirepass admin
platform: linux/amd64
ports:
- "6379:6379"
volumes:
- data-redis:/data
restart: always
networks:
- dps-net
#############################################################################################
### REDIS COMMANDER ###
#############################################################################################
dps-redis-commander:
container_name: redis-commander
hostname: redis-commander
image: rediscommander/redis-commander:latest
restart: always
platform: linux/amd64
environment:
- REDIS_PORT=6379
- REDIS_HOST=dps-redis
- REDIS_PASSWORD=admin
ports:
- "8081:8081"
networks:
- dps-net
volumes:
data-rabbit:
data-redis:
networks:
dps-net:
driver: "bridge"