Allows HTTP bind address to be overridden by an environment variable

Uses REGISTRY_HTTP_ADDR
This commit is contained in:
Brian Bland 2014-12-15 14:17:51 -08:00
parent a35273a0db
commit c51ea97234

View file

@ -311,6 +311,10 @@ func parseV0_1Registry(in []byte) (*Configuration, error) {
config.Reporting.NewRelic.Name = newRelicName
}
if httpAddr, ok := envMap["REGISTRY_HTTP_ADDR"]; ok {
config.HTTP.Addr = httpAddr
}
return (*Configuration)(&config), nil
}