fix(init): 更新真实 BCrypt 哈希值,添加 actuator 依赖,修复健康检查 (T003/T004 followup)
This commit is contained in:
@@ -71,11 +71,8 @@ services:
|
||||
condition: service_healthy
|
||||
rustfs:
|
||||
condition: service_healthy
|
||||
# NOTE: /actuator/health requires spring-boot-starter-actuator in pom.xml.
|
||||
# Currently pom.xml does not include it. Either add the dependency (recommended)
|
||||
# or replace this check with a simple TCP port check.
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--spider", "-q", "http://localhost:8080/actuator/health"]
|
||||
test: ["CMD-SHELL", "wget -q --spider http://localhost:8080/actuator/health 2>/dev/null || exit 1"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
|
||||
Reference in New Issue
Block a user