From ceec43ebcce8ab8102921f004338eb4043258b51 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Fri, 5 Dec 2014 13:58:04 +0100 Subject: [PATCH] Explain setting up Docker to run against machines Closes #14 Signed-off-by: Ben Firshman --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index b461c99edd..35f866cf87 100644 --- a/commands.go +++ b/commands.go @@ -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 }