http://www.gwtproject.org/ app example built by gradle running in jetty docker container
Steps to launch this in your local computer:
- In Windows, Mac or Linux install git, Java8, docker add them to your PATH
- In Windows or Mac install docker-machine
- In Windows or Mac run
docker-machine create --driver virtualbox default
- In Windows or Mac run
docker-machine env
- Pull this repo and change java code and tests
- Run following to launch the docker container:
gradlew build
docker-machine start default
docker build -t hello .
docker run -d -p 80:8080 hello
Get docker host ip
docker-machine ip
192.168.99.100
Open http://192.168.99.100/HelloWorld/HelloWorld.html
in your browser.