From 9800b6dec40d48c42ed116c292590e634d840895 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Mon, 28 Apr 2025 15:29:00 +0100 Subject: [PATCH] fix(stremio-catalog-providers): correct postgres user in healthcheck command --- apps/stremio-catalog-providers/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/stremio-catalog-providers/compose.yaml b/apps/stremio-catalog-providers/compose.yaml index af9be99..f668623 100644 --- a/apps/stremio-catalog-providers/compose.yaml +++ b/apps/stremio-catalog-providers/compose.yaml @@ -56,7 +56,7 @@ services: ports: - "5432:5432" healthcheck: - test: ["CMD-SHELL", "pg_isready -U postgres_user -d stremio_catalog_db"] + test: ["CMD-SHELL", "pg_isready -U postgres -d stremio_catalog_db"] interval: 30s timeout: 10s retries: 5