Compare commits
17 Commits
20f2a6dc96
...
c746c8fb8a
| Author | SHA1 | Date | |
|---|---|---|---|
| c746c8fb8a | |||
| b68460e499 | |||
| 7ff7534d05 | |||
| dce3bbd1fb | |||
| 382cc197e5 | |||
| 927519d8f2 | |||
| e2a293036f | |||
| b890d81825 | |||
| 6cbd571a5d | |||
| 12bb51845b | |||
| 47554d159f | |||
| 99c06a23bf | |||
| 445a864408 | |||
| 49621eded2 | |||
| 4e8ba58cf7 | |||
| c436fb0e3b | |||
|
|
ed60a656da |
@@ -1,4 +1,4 @@
|
|||||||
FROM bitnami/java:17.0.12-10-debian-12-r4 AS builder
|
FROM bitnami/java:17.0.12-10-debian-12-r6 AS builder
|
||||||
|
|
||||||
WORKDIR /opt
|
WORKDIR /opt
|
||||||
|
|
||||||
|
|||||||
10
pom.xml
10
pom.xml
@@ -11,7 +11,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>ec-config-server</artifactId>
|
<artifactId>ec-config-server</artifactId>
|
||||||
<version>1.0.6-SNAPSHOT</version>
|
<version>1.0.8-SNAPSHOT</version>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
@@ -54,8 +54,8 @@
|
|||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.cloud</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-cloud-config-server</artifactId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
@@ -65,6 +65,10 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-web</artifactId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-config-server</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|||||||
@@ -20,6 +20,13 @@ management:
|
|||||||
include: '*'
|
include: '*'
|
||||||
health:
|
health:
|
||||||
show-details: always
|
show-details: always
|
||||||
|
probes:
|
||||||
|
enabled: true
|
||||||
|
health:
|
||||||
|
livenessstate:
|
||||||
|
enabled: true
|
||||||
|
readinessstate:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
logging:
|
logging:
|
||||||
file:
|
file:
|
||||||
|
|||||||
Reference in New Issue
Block a user