Skip to content

geld0r/spring-boot-admin-ui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring Boot Admin dockerized

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.

Notifier Configuration

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

Build

Run gradle buildDocker

Packages

No packages published

Languages

  • Java 100.0%