How to run emp3 web using docker - missioncommand/emp3-web GitHub Wiki

How to run EMP3-Web using Docker

  • Clone the emp3-web Repository

  • Install docker

  • In the root of the repository download the docker container node:5.9.0

docker pull node:5.9.0
  • Run the following docker command

Linux

docker run --rm --it -p 3000:3000 -v (pwd):/code node:5.9.0 bin/bash

Windows

docker run --rm -it -p 3000:3000 -v (pwd):/code node:5.9.0 bin/bash
  • Navigate to the code directory
cd code
  • Run the following commands to host the Developmental Validation Tool
npm install -g grunt-cli
npm install
grunt
grunt serve
  • The Developmental Validation Tool will be available at

localhost:3000/src/validation