From 3d7ff94ff2da51be3b2a8339cff228fa9f7e14a3 Mon Sep 17 00:00:00 2001 From: Evan Hazlett Date: Sat, 24 Jan 2015 00:25:07 -0500 Subject: [PATCH] use DOCKER_HOST instead of DOCKER_URL Signed-off-by: Evan Hazlett --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index 9a49880d05..5dbc7051bd 100644 --- a/commands.go +++ b/commands.go @@ -342,7 +342,7 @@ func cmdShellinit(c *cli.Context) { if err != nil { log.Fatal(err) } - fmt.Printf("export DOCKER_TLS_VERIFY=yes\nexport DOCKER_CERT_PATH=%s\nexport DOCKER_URL=%s\n", + fmt.Printf("export DOCKER_TLS_VERIFY=yes\nexport DOCKER_CERT_PATH=%s\nexport DOCKER_HOST=%s\n", utils.GetMachineClientCertDir(), cfg.machineUrl) }