Simple rest app
mvn clean install
docker build -t rest .
docker run -p 8080:8080 -p 8787:8787 -p 9090:9090 -v {base directory of system}:/usr/src/mount --rm --name rest -d rest
http://localhost:8080/swagger-ui.html
To run the application with Spring Admin Console
- Pull the spring-admin-console : https://github.com/dmhdeveloper/spring-admin-console.git
- Move it to the same directory as this application
- Build both applications
(Attached to the current terminal session)
$ docker-compose build && docker-compose up
Admin Console: http://localhost:7070