Aim of this project is to be able to run spring-boot-admin application as a Docker container.
Docker image is publicly available as gelder/spring-boot-admin-ui.
You can run spring-boot-admin in Docker with this command:
docker run -d -p 8090:8080 --name spring-boot-admin gelder/spring-boot-admin-ui:1.4.6
Now just go to http://localhost:8090 (or http://your-docker:8090) with your browser.
Cloned from blog post.
In order to enable sending of notifications via mailgun.net, add the following configuration:
spring:
boot:
admin:
notify:
rate: 60000
reminder:
period: 3600000
mail:
enabled: true
from: source@whatever.com
to: me@provider.com
mailgun:
api:
url: https://api.mailgun.net/v3/XXX.mailgun.org/messages
key: key-XXX
Run gradle buildDocker