From 09bd073a43832bcf148f59416328fe70c8a5170a Mon Sep 17 00:00:00 2001 From: niten Date: Thu, 12 Oct 2023 13:43:09 -0700 Subject: [PATCH] "healthy" -> "service_healthy" --- lemmy-docker.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lemmy-docker.nix b/lemmy-docker.nix index 1d53bf3..75b1af9 100644 --- a/lemmy-docker.nix +++ b/lemmy-docker.nix @@ -27,7 +27,7 @@ let networks = [ "internal_network" "external_network" ]; ports = [ "${toString port}:8536" ]; volumes = [ "${proxyCfg.configFile}:/etc/nginx/nginx.conf:ro,Z" ]; - depends_on = [ "lemmy" "lemmy-ui" "pictrs" ]; + depends_on = [ "lemmy" "lemmy-ui" ]; restart = "always"; }; }; @@ -39,8 +39,8 @@ let env_file = [ lemmyCfg.envFile ]; volumes = [ "${lemmyCfg.configFile}:/config/config.hjson:ro,Z" ]; depends_on = { - postgres.condition = "healthy"; - pictrs.condition = "healthy"; + postgres.condition = "service_healthy"; + pictrs.condition = "service_healthy"; }; restart = "always"; };