"healthy" -> "service_healthy"

This commit is contained in:
niten 2023-10-12 13:43:09 -07:00
parent 70645ba1e4
commit 09bd073a43
1 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ let
networks = [ "internal_network" "external_network" ]; networks = [ "internal_network" "external_network" ];
ports = [ "${toString port}:8536" ]; ports = [ "${toString port}:8536" ];
volumes = [ "${proxyCfg.configFile}:/etc/nginx/nginx.conf:ro,Z" ]; volumes = [ "${proxyCfg.configFile}:/etc/nginx/nginx.conf:ro,Z" ];
depends_on = [ "lemmy" "lemmy-ui" "pictrs" ]; depends_on = [ "lemmy" "lemmy-ui" ];
restart = "always"; restart = "always";
}; };
}; };
@ -39,8 +39,8 @@ let
env_file = [ lemmyCfg.envFile ]; env_file = [ lemmyCfg.envFile ];
volumes = [ "${lemmyCfg.configFile}:/config/config.hjson:ro,Z" ]; volumes = [ "${lemmyCfg.configFile}:/config/config.hjson:ro,Z" ];
depends_on = { depends_on = {
postgres.condition = "healthy"; postgres.condition = "service_healthy";
pictrs.condition = "healthy"; pictrs.condition = "service_healthy";
}; };
restart = "always"; restart = "always";
}; };