1
0

fix: use image load

This commit is contained in:
2024-02-21 18:57:10 +00:00
parent 8251927821
commit c17676d0f9
2 changed files with 19 additions and 1 deletions

View File

@ -175,7 +175,7 @@ func (cmd *KernelCmd) fetchContainerCache(c container.Container) {
}
path := cache.ContainerURL(c.Name())
err := container.Import(path, c.Name())
err := container.Load(path, c.Name())
if err == nil {
log.Info().Msgf("container %s -> %s", path, c.Name())
}