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