From 9133062e6809820af19468f8f35a6ba25269a521 Mon Sep 17 00:00:00 2001 From: ayaka Date: Sat, 1 Jun 2024 00:02:08 +1200 Subject: [PATCH] fix healthcheck --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f000f4d..e4714ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,6 @@ USER redlib EXPOSE 8080 # Run a healthcheck every minute to make sure redlib is functional -HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider --q http://localhost:8080/settings || exit 1 +HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider -q http://localhost:8080/settings || exit 1 CMD ["redlib"] \ No newline at end of file