From df72090f4bd56d551f368a6107a6e390a61d5c3a Mon Sep 17 00:00:00 2001 From: J-Brill <74964561+J-Brill@users.noreply.github.com> Date: Sun, 13 Feb 2022 20:11:41 +0100 Subject: [PATCH] Fixed typo The missing dash resulted in solr sending a DNS query each minute that returned NxDomain. In my case they looked like this: "f.base.domain" with base.domain being the base domain set for local DNS. --- docker/docker-compose/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/docker-compose/docker-compose.yml b/docker/docker-compose/docker-compose.yml index 0ff29d6c..9d55523b 100644 --- a/docker/docker-compose/docker-compose.yml +++ b/docker/docker-compose/docker-compose.yml @@ -110,7 +110,7 @@ services: - solr-precreate - docspell healthcheck: - test: ["CMD", "curl", "f", "http://localhost:8983/solr/docspell/admin/ping"] + test: ["CMD", "curl", "-f", "http://localhost:8983/solr/docspell/admin/ping"] interval: 1m timeout: 10s retries: 2