From 94c09b61a01b36741bbaff283408a65bec7d6272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=A2ne=20Pichou?= Date: Wed, 17 Oct 2018 20:30:46 +0200 Subject: [PATCH] Fix database HEALTHCHECK with correct user/db name (#330) Closes #325 --- db/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/Dockerfile b/db/Dockerfile index 671c3de..4b0a03c 100644 --- a/db/Dockerfile +++ b/db/Dockerfile @@ -19,7 +19,7 @@ RUN apk add --no-cache \ COPY setup-wale.sh /docker-entrypoint-initdb.d/ #Healthcheck to make sure container is ready -HEALTHCHECK CMD pg_isready || exit 1 +HEALTHCHECK CMD pg_isready -U $POSTGRES_USER -d $POSTGRES_DB || exit 1 # Add and configure entrypoint and command COPY entrypoint.sh /