From 2e3d09df2a2b5881234e1760b68a4ca60c27d029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ho=C3=A0ng=20Tr=E1=BA=A7n=20Nh=E1=BA=ADt=20Minh?= <82358580+htnminh@users.noreply.github.com> Date: Thu, 11 Sep 2025 23:21:48 +0700 Subject: [PATCH] fix(template/filebrowser): correct routing and healthcheck for Filebrowser --- templates/compose/filebrowser.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/compose/filebrowser.yaml b/templates/compose/filebrowser.yaml index 2cb17d501..a9eb35e2e 100644 --- a/templates/compose/filebrowser.yaml +++ b/templates/compose/filebrowser.yaml @@ -30,7 +30,7 @@ services: "port": 80 } healthcheck: - test: ["CMD", "curl", "-f", "http://127.0.0.1:80"] - interval: 2s - timeout: 10s - retries: 15 + test: ["CMD-SHELL", "wget -q --spider http://localhost:80 || exit 1"] + interval: 10s + timeout: 3s + retries: 10