Create Jar:
mvn clean package
Build Docker Image Make sure you are in your project root (where Dockerfile is located), then run:
docker build -t helloweb-app .
Run Docker Container
docker run -d -p 8080:8080 --name helloweb-container helloweb-app
Now access application with public IP