You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.Fatal("There's already a machine with the same name")
194
-
}
195
-
196
-
keyExists, err:=drivers.PublicKeyExists()
197
-
iferr!=nil {
198
-
log.Fatal(err)
199
-
}
200
-
201
-
if!keyExists {
202
-
log.Fatalf("Identity authentication public key doesn't exist at %q. Create your public key by running the \"docker\" command.", drivers.PublicKeyPath())
log.Infof("%q has been created and is now the active machine. To point Docker at this machine, run: export DOCKER_HOST=$(machine url) DOCKER_AUTH=identity", name)
206
+
log.Infof("%q has been created and is now the active machine", name)
207
+
// TODO @ehazlett - this will change but at least show how to connect for now
208
+
log.Info("To connect, pass these args to Docker: ")
0 commit comments