Browse Source

Merge pull request #106 from kencochrane/users

change registry address to https from http
Solomon Hykes 12 years ago
parent
commit
b1acd0a7b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      auth/auth.go

+ 1 - 1
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"`