From c347ed2bfa2d524494657269ab23828674f74376 Mon Sep 17 00:00:00 2001 From: yannis-srl Date: Thu, 17 Oct 2024 20:34:53 +0200 Subject: [PATCH] Fix healthcheck to not use env variable (#864) --- examples/docker-compose/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/docker-compose/docker-compose.yml b/examples/docker-compose/docker-compose.yml index 26621d7558..a4ef6ac29e 100644 --- a/examples/docker-compose/docker-compose.yml +++ b/examples/docker-compose/docker-compose.yml @@ -31,7 +31,7 @@ services: test: [ "CMD-SHELL", - "pg_isready -U ${POSTGRES_USER:-bloodhound} -d ${POSTGRES_DB:-bloodhound} -h 127.0.0.1 -p ${POSTGRES_PORT:-5432}" + "pg_isready -U ${POSTGRES_USER:-bloodhound} -d ${POSTGRES_DB:-bloodhound} -h 127.0.0.1 -p 5432" ] interval: 10s timeout: 5s @@ -53,7 +53,7 @@ services: test: [ "CMD-SHELL", - "wget -O /dev/null -q http://localhost:${NEO4J_WEB_PORT:-7474} || exit 1" + "wget -O /dev/null -q http://localhost:7474 || exit 1" ] interval: 10s timeout: 5s