-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmifos-stack-DEV.yml
More file actions
48 lines (47 loc) · 1.13 KB
/
mifos-stack-DEV.yml
File metadata and controls
48 lines (47 loc) · 1.13 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
version: "2.2"
networks:
mifos:
driver: bridge
services:
mifos-app-server:
image: com.mx.fintecheando.tomcat.mifosx.19.07
restart: always
ports:
- 8443:8443
- 8080:8080
networks:
- mifos
depends_on:
mifos-db-server:
condition: service_healthy
mifos-sms-server:
condition: service_healthy
healthcheck:
test: curl -kfsS https://127.0.0.1:8443 | grep 'Tomcat' | wc -l
interval: 5s
retries: 20
mifos-db-server:
image: com.mx.fintecheando.mysql.mifosx.19.07
restart: always
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: mysql
healthcheck:
test: mysqladmin --user=root --password=mysql ping -h localhost
interval: 5s
retries: 20
networks:
- mifos
mifos-sms-server:
image: com.mx.fintecheando.activemq.mifosx.19.07
restart: always
environment:
ACTIVEMQ_CONFIG_MINMEMORY: 512
ACTIVEMQ_CONFIG_MAXMEMORY: 1024
healthcheck:
test: curl -u admin:admin -s http://localhost:8161/admin
interval: 5s
retries: 20
networks:
- mifos