From cbd8bdfd3bd93b8127e2cd15b42cc63201715304 Mon Sep 17 00:00:00 2001 From: devilreef Date: Thu, 30 Apr 2026 00:23:32 +0600 Subject: [PATCH] fix: use pidof (pgrep absent in savonet image) for liquidsoap healthcheck --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index fc9d24c..c96bbf6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -40,7 +40,7 @@ services: target: /now-playing command: ['liquidsoap', '/script.liq'] healthcheck: - test: ['CMD-SHELL', 'pgrep liquidsoap || exit 1'] + test: ['CMD-SHELL', 'pidof liquidsoap >/dev/null || exit 1'] interval: 30s timeout: 5s retries: 3