Merge pull request #3027 from jeanlaurent/vwsitch-hint

Fix #2995
This commit is contained in:
Nathan LeClaire 2016-02-09 17:23:57 -08:00
commit 5a883fd302
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ func (d *Driver) chooseVirtualSwitch() (string, error) {
if d.VSwitch == "" {
if len(switches) < 1 {
return "", fmt.Errorf("no vswitch found")
return "", fmt.Errorf("no vswitch found. A valid vswitch must be available for this command to run. Check https://docs.docker.com/machine/drivers/hyper-v/")
}
return switches[0], nil