fix(service): n8n task-runners health check fails (#9309)
This commit is contained in:
commit
2a2a258392
3 changed files with 6 additions and 6 deletions
|
|
@ -48,7 +48,7 @@ services:
|
||||||
redis:
|
redis:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:5678/"]
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:5678/healthz"]
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 20s
|
timeout: 20s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
@ -133,7 +133,7 @@ services:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test:
|
||||||
- CMD-SHELL
|
- CMD-SHELL
|
||||||
- 'wget -qO- http://127.0.0.1:5680/'
|
- 'wget -qO- http://127.0.0.1:5680/healthz'
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 20s
|
timeout: 20s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ services:
|
||||||
postgresql:
|
postgresql:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:5678/"]
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:5678/healthz"]
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 20s
|
timeout: 20s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
@ -58,7 +58,7 @@ services:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test:
|
||||||
- CMD-SHELL
|
- CMD-SHELL
|
||||||
- 'wget -qO- http://127.0.0.1:5680/'
|
- 'wget -qO- http://127.0.0.1:5680/healthz'
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 20s
|
timeout: 20s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- n8n-data:/home/node/.n8n
|
- n8n-data:/home/node/.n8n
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:5678/"]
|
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:5678/healthz"]
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 20s
|
timeout: 20s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
@ -49,7 +49,7 @@ services:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test:
|
||||||
- CMD-SHELL
|
- CMD-SHELL
|
||||||
- 'wget -qO- http://127.0.0.1:5680/'
|
- 'wget -qO- http://127.0.0.1:5680/healthz'
|
||||||
interval: 5s
|
interval: 5s
|
||||||
timeout: 20s
|
timeout: 20s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue