Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 760 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 760 Bytes

Spring Boot Web MVC Template

How to package

./gradlew bootJar # package as jar

./gradlew jibDockerBuild # build container image in local

./gradlew jib # build container image in remote place

How to run

./gradlew # will run with h2 database

# When Container is created
# Environment Value referenced in app.yml file
docker run -itd --name boot-demo lazyskulptor/boot-template # run with h2 database

docker-compose -f src/main/docker/app.yml up -d # run with mysql

Security Integration