feat: remove frigate from containers & add dns for other hosts
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s

This commit is contained in:
Xavier Morel
2026-05-27 21:07:29 +02:00
parent 1fe2817294
commit d32b2307ce
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -134,7 +134,12 @@ in
domain = "${d}${domain_int}";
answer = "${ip d}";
enabled = true;
}) config.id);
}) config.id)
++ (lib.mapAttrsToList (host: h: {
domain = "${host}${domain_int}";
answer = tools.build_ip h.ip;
enabled = true;
}) config.globals.other_hosts);
};
};
};