2
0

fix: health check for all serivce

This commit is contained in:
zhangsz
2025-02-18 15:46:09 +08:00
parent 77b180dc07
commit b550614a4a
4 changed files with 32 additions and 6 deletions

View File

@@ -193,7 +193,7 @@ services:
test: ["CMD-SHELL", "curl -f http://localhost:${WFC_SYSTEM_PORT}/actuator/health || exit 1"]
interval: 30s
timeout: 10s
retries: 3
retries: 6
restart: ${RESTART_OPTION}
wfc-modules-user:
@@ -232,7 +232,7 @@ services:
test: ["CMD-SHELL", "curl -f http://localhost:${WFC_USER_PORT}/actuator/health || exit 1"]
interval: 30s
timeout: 10s
retries: 3
retries: 6
restart: ${RESTART_OPTION}
wfc-modules-file:
@@ -263,6 +263,11 @@ services:
- WFC_FILE_PORT=${WFC_FILE_PORT}
- SPRING_CONFIG_ADDITIONAL_LOCATION=optional:classpath:/,optional:file:/opt/wfc/conf/
- TZ=${TZ}
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:${WFC_FILE_PORT}/actuator/health || exit 1"]
interval: 30s
timeout: 10s
retries: 6
restart: ${RESTART_OPTION}
wfc-modules-job:
@@ -293,6 +298,11 @@ services:
- WFC_JOB_PORT=${WFC_JOB_PORT}
- SPRING_CONFIG_ADDITIONAL_LOCATION=optional:classpath:/,optional:file:/opt/wfc/conf/
- TZ=${TZ}
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:${WFC_JOB_PORT}/actuator/health || exit 1"]
interval: 30s
timeout: 10s
retries: 6
restart: ${RESTART_OPTION}
wfc-modules-payment:
@@ -326,6 +336,11 @@ services:
- WFC_PAYMENT_PORT=${WFC_PAYMENT_PORT}
- SPRING_CONFIG_ADDITIONAL_LOCATION=optional:classpath:/,optional:file:/opt/wfc/conf/
- TZ=${TZ}
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:${WFC_PAYMENT_PORT}/actuator/health || exit 1"]
interval: 30s
timeout: 10s
retries: 6
restart: ${RESTART_OPTION}
wfc-nginx:
@@ -339,6 +354,7 @@ services:
- wfc-fe-network
- wfc-be-network
volumes:
- ./wfc/modules/file/upload:/opt/wfc/file/upload
- ./nginx/html/dist:/opt/wfc/portal
- ./nginx/conf/nginx.conf:/etc/nginx/nginx.conf
- ./nginx/logs:/var/log/nginx
@@ -354,6 +370,16 @@ services:
- WFC_SERVER_IP=${WFC_SERVER_IP}
- WFC_SERVER_PORT=${WFC_SERVER_PORT}
- TZ=${TZ}
healthcheck:
test:
- "CMD-SHELL"
- >
curl -f http://localhost:${WFC_SERVER_PORT}/sys &&
curl -f http://localhost:${WFC_SERVER_PORT}/u ||
exit 1
interval: 30s
timeout: 5s
retries: 6
restart: ${RESTART_OPTION}
networks: