Fix depends_on postgresql -> postgres

This commit is contained in:
niten 2023-08-29 09:43:28 -07:00
parent 42cd041062
commit 8198d10619
1 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ in {
"${toString cfg.ports.http}:9000" "${toString cfg.ports.http}:9000"
"${toString cfg.ports.https}:9443" "${toString cfg.ports.https}:9443"
]; ];
depends_on = [ "postgresql" "redis" ]; depends_on = [ "postgres" "redis" ];
}; };
worker.service = { worker.service = {
image = cfg.images.authentik; image = cfg.images.authentik;
@ -176,7 +176,7 @@ in {
"${cfg.state-directory}/templates:/templates" "${cfg.state-directory}/templates:/templates"
]; ];
user = mkUserMap cfg.uids.authentik; user = mkUserMap cfg.uids.authentik;
depends_on = [ "postgresql" "redis" ]; depends_on = [ "postgres" "redis" ];
}; };
}; };
}; };