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.
This commit is contained in:
J-Brill
2022-02-13 20:11:41 +01:00
committed by GitHub
parent 6b9571eda9
commit df72090f4b

View File

@ -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