diff options
| author | Salvatore Gabriele La Greca <35406071+thegabriele97@users.noreply.github.com> | 2025-02-26 09:37:44 +0100 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-02-26 10:20:51 +0100 |
| commit | 1fd4dab3b41bd45da12a66677ed94ae438d27912 (patch) | |
| tree | fed710c3bf3d6fec9aae47d926c62471ea5b58d1 /Dockerfile | |
| parent | 887594f63464c4f2e39717ea1898001984e27c00 (diff) | |
Updated health check in Dockerfile
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index b353db102..76148f05f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -62,7 +62,7 @@ RUN su searxng -c "/usr/bin/python3 -m compileall -q searx" \ -o -name '*.svg' -o -name '*.ttf' -o -name '*.eot' \) \ -type f -exec gzip -9 -k {} \+ -exec brotli --best {} \+ -HEALTHCHECK CMD wget --quiet --tries=1 --spider http://localhost:8080/healthz || exit 1 +HEALTHCHECK CMD wget --quiet --tries=1 --spider http://127.0.0.1:8080/healthz || exit 1 # Keep these arguments at the end to prevent redundant layer rebuilds ARG LABEL_DATE= |