forked from fintecheand01/fintecheando-mifos-docker-ubuntu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (40 loc) · 1 KB
/
docker-compose.yml
File metadata and controls
42 lines (40 loc) · 1 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
version: "2.2"
networks:
app-tier:
driver: bridge
services:
mifosx:
image: fintecheando/com.mx.fintecheando.mifosx.18.03.01
restart: always
ports:
- 8443:8443
networks:
- app-tier
depends_on:
mifos-db-server:
condition: service_healthy
mifos-sms-server:
condition: service_healthy
mifos-db-server:
image: fintecheando/com.mx.fintecheando.mysql.mifosx.18.03.01
restart: always
environment:
MYSQL_ROOT_PASSWORD: mysql
healthcheck:
test: mysqladmin --user=root --password=mysql ping -h localhost
interval: 5s
retries: 20
networks:
- app-tier
mifos-sms-server:
image: fintecheando/com.mx.fintecheando.activemq.mifosx.18.03.01
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:
- app-tier