logrus.Warnf("No output specified for %s driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load",noMobyDriver.Factory().Name())
logrus.Warnf("No output specified for %s driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load",noMobyDriver.Factory().Name())
@ -852,6 +850,15 @@ func newDockerLoader(ctx context.Context, d DockerAPI, name string, mw *progress
},nil
},nil
}
}
funcnoDefaultLoad()bool{
v:=os.Getenv("BUILDX_NO_DEFAULT_LOAD")
b,err:=strconv.ParseBool(v)
iferr!=nil{
logrus.Warnf("invalid non-bool value for BUILDX_NO_DEFAULT_LOAD: %s",v)