Skip to content
Snippets Groups Projects

fix(engine): show host info instead of virtualization system (#425)

Merged Artyom Kartasov requested to merge 425-host-info into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -133,9 +133,9 @@ func AddVolumesToHostConfig(ctx context.Context, docker *client.Client, hostConf
return errors.Wrap(err, "failed to get host info")
}
log.Dbg("Virtualization system: ", hostInfo.VirtualizationSystem)
if IsInDocker() {
log.Dbg("host info: ", hostInfo.Hostname)
inspection, err := docker.ContainerInspect(ctx, hostInfo.Hostname)
if err != nil {
return err
Loading