-
Notifications
You must be signed in to change notification settings - Fork 49
/
docker-compose.yml
260 lines (247 loc) · 7.49 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
networks:
ml-mojaloop-net:
name: ml-mojaloop-net
x-redis-node: &REDIS_NODE
image: docker.io/bitnami/redis-cluster:6.2.14
environment: &REDIS_ENVS
ALLOW_EMPTY_PASSWORD: yes
REDIS_NODES: redis-node-0 redis-node-1 redis-node-2 redis-node-3 redis-node-4 redis-node-5
networks:
- ml-mojaloop-net
services:
ml-api-adapter:
image: mojaloop/ml-api-adapter:local
container_name: ml_ml-api-adapter
build:
context: .
command: sh -c "node /opt/app/wait4/wait4.js ml-api-adapter && node src/api/index.js"
# command: sh -c "/opt/app/wait4/wait4.js ml-api-adapter && node --inspect=0.0.0.0:9229 src/api/index.js"
ports:
- "3000:3000"
# - "9229:9229" # for debugging
environment:
- LOG_LEVEL=debug
- CSL_LOG_TRANSPORT=file
- MLAPI_ENDPOINT_SOURCE_URL=http://ml-api-adapter-endpoint:4545
volumes:
- ./docker/ml-api-adapter/default.json:/opt/app/config/default.json
- ./docker/wait4:/opt/app/wait4
networks:
- ml-mojaloop-net
user: 'root'
depends_on:
- central-ledger
- kafka
healthcheck:
test: ["CMD", "sh", "-c" ,"set -e;apk --no-cache add curl;curl --fail http://localhost:3000/health"]
timeout: 20s
retries: 10
interval: 30s
# a special server for testing integration callbacks
ml-api-adapter-endpoint:
image: mojaloop/ml-api-adapter:local
container_name: ml_ml-api-adapter-endpoint
build:
context: .
command: sh -c "node test/integration/server/index.js"
ports:
- "4545:4545"
environment:
- LOG_LEVEL=info
- CSL_LOG_TRANSPORT=file
- ENDPOINT_PORT=4545
volumes:
- ./docker/ml-api-adapter/default.json:/opt/app/config/default.json
- ./test:/opt/app/test
networks:
- ml-mojaloop-net
user: 'root'
depends_on:
- central-ledger
- kafka
healthcheck:
test: ["CMD", "sh", "-c" ,"set -e;apk --no-cache add curl;curl --fail http://localhost:4545"]
timeout: 20s
retries: 10
interval: 30s
central-ledger:
# image: mojaloop/central-ledger:latest
image: mojaloop/central-ledger:v17.8.0-snapshot.34
container_name: ml_central-ledger
command: sh -c "node /opt/app/wait4/wait4.js central-ledger && npm run migrate && node src/api/index.js"
links:
- mysql
- kafka
ports:
- "3001:3001"
volumes:
- ./docker/central-ledger/default.json:/opt/app/config/default.json
- ./docker/wait4:/opt/app/wait4
depends_on:
mysql:
condition: service_healthy
kafka:
condition: service_started
environment:
- CLEDG_SIDECAR__DISABLED=true
networks:
- ml-mojaloop-net
user: 'root'
healthcheck:
test: ["CMD", "sh", "-c" ,"set -e;apk --no-cache add curl;curl --fail http://localhost:3001/health"]
timeout: 20s
retries: 10
interval: 30s
central-handler-position-batch:
image: mojaloop/central-ledger:v17.8.0-snapshot.34
command: sh -c "node /opt/app/wait4/wait4.js central-ledger && "CLEDG_HANDLERS__API__DISABLED=true" node src/handlers/index.js handler --positionbatch"
ports:
- "3002:3001"
links:
- mysql
- kafka
volumes:
- ./docker/central-ledger/default.json:/opt/app/config/default.json
- ./docker/wait4:/opt/app/wait4
environment:
- LOG_LEVEL=info
- CLEDG_MONGODB__DISABLED=true
- EVENT_SDK_TRACEID_PER_VENDOR=false
networks:
- ml-mojaloop-net
depends_on:
central-ledger:
condition: service_healthy
kafka:
condition: service_started
healthcheck:
test: wget -q http://localhost:3001/health -O /dev/null || exit 1
timeout: 20s
retries: 30
interval: 30s
start_period: 30s
user: root
mysql:
image: mysql/mysql-server
container_name: ml_mysql
# Disable logging as it is far too verbose for debugging locally
logging:
driver: none
ports:
- "3306:3306"
volumes:
#this fixes the permissions issue, but docker-compose up will fail on first attempt
- ./docker/sql-init/:/docker-entrypoint-initdb.d/
environment:
- MYSQL_USER=${DBUSER:-central_ledger}
- MYSQL_PASSWORD=${DBPASS:-password}
- MYSQL_DATABASE=${DBUSER:-central_ledger}
- MYSQL_ALLOW_EMPTY_PASSWORD=true
networks:
- ml-mojaloop-net
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "mysql"]
timeout: 20s
retries: 10
start_period: 40s
interval: 30s
kafka:
image: docker.io/bitnami/kafka:3.5
container_name: ml_kafka
networks:
- ml-mojaloop-net
ports:
- "9092:9092"
environment:
# BITNAMI_DEBUG: "yes"
ALLOW_PLAINTEXT_LISTENER: "yes"
KAFKA_ADVERTISED_HOST_NAME: kafka
KAFKA_CFG_LISTENERS: CONTROLLER://:9093,LISTENER_DOCKER://:29092,LISTENER_EXTERN://:9092
KAFKA_CFG_ADVERTISED_LISTENERS: LISTENER_DOCKER://kafka:29092,LISTENER_EXTERN://localhost:9092
KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: CONTROLLER:PLAINTEXT,LISTENER_DOCKER:PLAINTEXT,LISTENER_EXTERN:PLAINTEXT
KAFKA_CFG_INTER_BROKER_LISTENER_NAME: LISTENER_DOCKER
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_CFG_MESSAGE_MAX_BYTES: 200000000
KAFKA_CFG_NODE_ID: 1
KAFKA_CFG_PROCESS_ROLES: broker,controller
KAFKA_CFG_CONTROLLER_LISTENER_NAMES: CONTROLLER
KAFKA_CFG_CONTROLLER_QUORUM_VOTERS: [email protected]:9093
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "true"
KAFKA_ENABLE_KRAFT: "true"
healthcheck:
test: ["CMD" ,"/opt/bitnami/kafka/bin/kafka-broker-api-versions.sh","--bootstrap-server","kafka:29092"]
timeout: 20s
retries: 10
start_period: 40s
interval: 30s
kafka-provisioning:
container_name: kafka-provisioning
networks:
- ml-mojaloop-net
image: docker.io/bitnami/kafka:3.5
depends_on:
- kafka
volumes:
- ./docker/kafka/scripts:/tmp/kafka/scripts
command: bash /tmp/kafka/scripts/provision.sh
simulator:
image: mojaloop/simulator:latest
container_name: ml_simulator
ports:
- "8444:8444"
environment:
- LOG_LEVEL=info
- TRANSFERS_ENDPOINT=http://host.docker.internal:3000
- QUOTES_ENDPOINT=http://host.docker.internal:3002
- PARTIES_ENDPOINT=http://host.docker.internal:4002
- TRANSFERS_FULFIL_RESPONSE_DISABLED=false
networks:
- ml-mojaloop-net
healthcheck:
test: ["CMD", "sh", "-c" ,"set -e;apk --no-cache add curl;curl --fail http://localhost:8444/health"]
timeout: 20s
retries: 10
interval: 30s
## Debug utilities
kafka-debug-console:
# image: quay.io/cloudhut/kowl:v1.4.0
image: docker.redpanda.com/redpandadata/console:latest
deploy:
replicas: 1
restart: on-failure
hostname: kafka-debug-console
ports:
- "9080:8080"
networks:
- ml-mojaloop-net
environment:
- KAFKA_BROKERS=kafka:29092
redis-node-0:
container_name: redis-node-0
<<: *REDIS_NODE
environment:
<<: *REDIS_ENVS
REDIS_CLUSTER_CREATOR: yes
depends_on:
- redis-node-1
- redis-node-2
- redis-node-3
- redis-node-4
- redis-node-5
ports:
- "6379:6379"
redis-node-1:
container_name: redis-node-1
<<: *REDIS_NODE
redis-node-2:
container_name: redis-node-2
<<: *REDIS_NODE
redis-node-3:
container_name: redis-node-3
<<: *REDIS_NODE
redis-node-4:
container_name: redis-node-4
<<: *REDIS_NODE
redis-node-5:
container_name: redis-node-5
<<: *REDIS_NODE