Merge pull request #15 from bfirsh/update-message-when-machines-are-created

Explain setting up Docker to run against machines
This commit is contained in:
Ben Firshman 2014-12-05 13:46:35 +00:00
commit 4b070657c6
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ func (cli *DockerCli) CmdCreate(args ...string) error {
if err := store.SetActive(host); err != nil {
return err
}
log.Infof("%q has been created and is now the active machine. Docker commands will now run against that machine.", name)
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)
return nil
}