From 3fc4ab0a8757cb3f3c3833dc2beed8485c7a6ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Cilia?= Date: Wed, 10 Apr 2024 09:26:51 +0200 Subject: [PATCH] [FIX] Planning Poker - Force Health Check to use IPV4 instead of IPV6 due to gunicorn bind declared as IPV4. --- apps/planning-poker/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/planning-poker/docker-compose.yml b/apps/planning-poker/docker-compose.yml index b7a1c449..5a4c9386 100644 --- a/apps/planning-poker/docker-compose.yml +++ b/apps/planning-poker/docker-compose.yml @@ -11,7 +11,7 @@ services: networks: - tipi_main_network healthcheck: - test: wget --no-verbose --tries=1 --spider http://localhost:8000 + test: wget --no-verbose --tries=1 --spider http://127.0.0.1:8000 interval: 10s timeout: 5s retries: 5