opts := &driver.DriverOptions{ Int: map[string]int{ driver.CPUs: 2, }, }
opts := &driver.DriverOptions{ Int: map[string]int{ driver.Memory: 2048, }, }
opts := &driver.DriverOptions{ Int: map[string]int{ driver.DiskSize: 20, }, }In summary, the `github.com/docker/machine/libmachine/drivers` package library provides `DriverOptions` that can be used to configure various `libmachine` drivers using integer values.