From bf165642dc1f514166c8d613e61435caa6e46fcc Mon Sep 17 00:00:00 2001 From: Zoey Date: Thu, 25 Aug 2022 16:18:46 +0200 Subject: [PATCH] fix healthcheck in fulltextsearch container Signed-off-by: Zoey --- Containers/fulltextsearch/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containers/fulltextsearch/Dockerfile b/Containers/fulltextsearch/Dockerfile index b5798792..c789a72e 100644 --- a/Containers/fulltextsearch/Dockerfile +++ b/Containers/fulltextsearch/Dockerfile @@ -2,3 +2,5 @@ FROM elasticsearch:7.17.6 RUN elasticsearch-plugin install --batch ingest-attachment + +HEALTHCHECK CMD curl -skfI localhost:9200 || exit 1