From cba3a5df34fb61411d30002ec79c98459d1a97a4 Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 28 Nov 2023 17:33:40 -0800 Subject: [PATCH] Fix database test --- tesla-mate-container.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tesla-mate-container.nix b/tesla-mate-container.nix index 99ac055..b541931 100644 --- a/tesla-mate-container.nix +++ b/tesla-mate-container.nix @@ -39,7 +39,7 @@ let env_file = [ postgresEnvFile ]; user = "${toString postgresUid}:${toString postgresUid}"; healthcheck = { - test = [ "CMD" "pg_isready" "-U" "lemmy" "-d" "lemmy" ]; + test = [ "CMD" "pg_isready" "-U" "teslamate" "-d" "teslamate" ]; start_period = "20s"; interval = "30s"; retries = 5;