The master branch contains the skeleton for Spring Boot examples.
$ mvn clean package
$ docker image build --tag spring-boot-examples .
$ docker image rm spring-boot-examples
$ docker image prune
$ docker-compose build
$ java -jar target\spring-boot-examples.jar
$ mvn spring-boot:run
$ docker create --name spring-boot-examples -p 8080:8080 spring-boot-examples
$ docker start spring-boot-examples
$ docker logs spring-boot-examples -f
$ docker stop spring-boot-examples
$ docker rm spring-boot-examples
$ docker-compose up
$ docker-compose down