Explain setting up Docker to run against machines

Closes #14

Signed-off-by: Ben Firshman <ben@firshman.co.uk>
This commit is contained in:
Ben Firshman 2014-12-05 13:58:04 +01:00
parent 5c6681d70c
commit ceec43ebcc
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
}