fix(init): 更新真实 BCrypt 哈希值,添加 actuator 依赖,修复健康检查 (T003/T004 followup)

This commit is contained in:
wh
2026-04-09 13:20:07 +08:00
parent 94cb27e95f
commit ae55e87e2c
3 changed files with 11 additions and 8 deletions

View File

@@ -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