Ver código fonte

Merge pull request #106 from kencochrane/users

change registry address to https from http
Solomon Hykes 12 anos atrás
pai
commit
b1acd0a7b0
1 arquivos alterados com 1 adições e 1 exclusões
  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"`