From 8be58d3a7f6020fe34281dbe27375005e248f0f5 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 --- auth/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/auth.go b/auth/auth.go index ae0e71b111..498b7d8413 100644 --- a/auth/auth.go +++ b/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"`