Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.08 KB

README.md

File metadata and controls

39 lines (30 loc) · 1.08 KB

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: [email protected]
          to: [email protected]
          mailgun:
            api:
              url: https://api.mailgun.net/v3/XXX.mailgun.org/messages
              key: key-XXX

Build

Run gradle buildDocker