- Example application from blog post: https://www.freecodecamp.org/news/author/sesigl/
- Demo Application copied and modified from: https://github.com/spring-guides/gs-accessing-data-rest.git
Follow the described Guide https://www.oracle.com/java/technologies/downloads/ or just use some package manager of your choice like brew:
brew install java
https://docs.docker.com/get-docker/
./mvnw clean test
./mvnw compile jib:dockerBuild
docker run --rm -v "$PWD/data":/var/lib/mysql --name mysql -e MYSQL_ROOT_PASSWORD=admin-password -e MYSQL_DATABASE=my-database -p 3306:3306 mysql:8.0.28-debian
docker run --net=host my-docker-image