fix: 修复docker-compose.yml health检查端口错误问题

This commit is contained in:
2025-10-25 19:05:55 +08:00
parent 283c30310a
commit 04e324e900

View File

@ -16,7 +16,7 @@ services:
networks:
- konsoft-shared-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8081/health"]
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
interval: 30s
timeout: 10s
retries: 3
@ -46,7 +46,7 @@ services:
networks:
- konsoft-shared-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
test: ["CMD", "curl", "-f", "http://localhost:8081/health"]
interval: 30s
timeout: 10s
retries: 3