1
0

fix: re-tagging podman-generated images

This commit is contained in:
dump_stack() 2024-05-11 10:54:45 +00:00
parent e51a528838
commit ee1262e983
Signed by: dump_stack
GPG Key ID: C9905BA72B5E02BB

View File

@ -92,6 +92,15 @@ func Load(localpath string, name string) (err error) {
return
}
cmd = exec.Command(Runtime, "tag", "localhost/"+name, name)
log.Debug().Msgf("%v", cmd)
raw, err = cmd.CombinedOutput()
if err != nil {
log.Debug().Err(err).Msg(string(raw))
return
}
return
}