From a3b5b5979f4a500fcea849ea590989b1c19c5cef Mon Sep 17 00:00:00 2001 From: Ken Cochrane Date: Tue, 19 Mar 2013 16:03:17 -0700 Subject: [PATCH] change registry address to https from http Upstream-commit: 8be58d3a7f6020fe34281dbe27375005e248f0f5 Component: engine --- components/engine/auth/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/auth/auth.go b/components/engine/auth/auth.go index ae0e71b111..498b7d8413 100644 --- a/components/engine/auth/auth.go +++ b/components/engine/auth/auth.go @@ -15,7 +15,7 @@ import ( const CONFIGFILE = "/var/lib/docker/.dockercfg" // the registry server we want to login against -const REGISTRY_SERVER = "http://registry.docker.io" +const REGISTRY_SERVER = "https://registry.docker.io" type AuthConfig struct { Username string `json:"username"`