cmd/app: include template name in container metadata
Test / Create distribution (push) Successful in 55s
Test / Sandbox (push) Successful in 3m3s
Test / ShareFS (push) Successful in 3m46s
Test / Hakurei (push) Successful in 4m2s
Test / Sandbox (race detector) (push) Successful in 5m27s
Test / Hakurei (race detector) (push) Successful in 6m38s
Test / Flake checks (push) Successful in 1m10s

This helps disambiguate active mutable containers.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-06-19 23:36:31 +09:00
parent 344d2b8207
commit b0b2471c0c
+2 -2
View File
@@ -86,9 +86,9 @@ func main() {
}
config := hst.Config{
ID: "app.hakurei.mutable",
ID: "app.hakurei.mutable." + args[0],
Container: &hst.ContainerConfig{
Hostname: "mutable",
Hostname: args[0] + "-mutable",
Filesystem: []hst.FilesystemConfigJSON{
{FilesystemConfig: &hst.FSOverlay{
Target: fhs.AbsRoot,