FROM SPRING BOOT WAR TO DOCKER IMAGE
This is a Spring Boot Web Application creates from a Docker image. The Web App uses Primefaces vs 5.0
- The Maven Plugin for Docker used is called fabric8 (spottify is another one)
- Docker file uses a predefined Tomcat version, instead of the Spring Boot Default
- Build the image: $> mvn clean install -Dmaven.test.skip=false docker:build
- Run the image as viewing the logs: $> docker run -p 8080:8080 --name mywebapp adminconsole
- Open your browser at http://<YOUR_IP_ADDRESS>:8080/myebapp