Simple quiz which is based on database. Questions and correct answers are stored in database. JS script manages the flow of the quiz.
Build and run docker with a database instance
$ docker build -t quiz database
$ docker run -p 3306:3306 -d quiz
Run development instance
$ mvn spring-boot:run