Wiki

Clone wiki

MobileCoach demonstration / Docker-Setup-Basic

Requirements

Setting up the server

  • In the cloned folder run docker-compose up -d to start the docker containers (tomcat, deepstream, and mongodb).
  • The webapp should then be available at http://localhost:8080/MC/admin. For logging in the webapp, the username is admin and the password is admin.
  • Run docker-compose stop to stop tomcat, deepstream, and mongodb containers.
  • Run docker-compose start or `./docker-compose restart to start or restart the containers.
  • Run docker-compose down to remove the containers. This does not erase the mongodb data collected. To clean up everything run chmod +x clean_data.sh and ./clean_data.sh.

Updated