Mifos X 19.07 - Docker - FinTECHeando

  1. Just run Docker compose to get Mifos X 19.07 up and running.
$ docker-compose up

Or build the images

  1. Build the MIFOS X image
$ docker build -t com.mx.fintecheando.tomcat.mifosx.19.07 .
  1. Build the MySQL image
$ docker build -t com.mx.fintecheando.mysql.mifosx.19.07 .
  1. Build the SMS Server image
$ docker build -t com.mx.fintecheando.activemq.mifosx.19.07 .
  1. Build the Web Server Nginx image
$ docker build -t com.mx.fintecheando.nginx.mifosx.19.07 .
  1. Run the Docker images using Compose
$ docker-compose -f mifos-stack-DEV.yml up
  1. Verify the running containers
$ docker ps | grep mifosx.19.07
  1. Login to Mifos using the Web UI with these credentials:

username: mifos password: password

https://localhost:8443/community-app/#/ (secure web access, but this is a self signed certificate and you will have a warning in your web explorer, just ignore it and continue)

  1. As note if you have any issue with the volumes and entry points remove the volumes (be careful, with this we are removing all of them, because it is running in our local DEV, don't do this in Production)
$ docker stop $(docker ps -a -q)
$ docker rm $(docker ps -a -q)
$ docker volume rm $(docker volume ls -q)

Reference

Issues with the reports