import "github.com/docker/machine/libmachine/drivers" opts := &drivers.DriverOptions{ String: "key1=value1,key2=value2", }
import "github.com/docker/machine/libmachine/drivers" opts := &drivers.DriverOptions{ String: "username=myuser,password=mypassword", }This example sets driver options with username and password values. These examples demonstrate how to use DriverOptions String to set driver options for the Docker Machine library.