Files
dokku/plugins/registry/registry.go

20 lines
516 B
Go
Raw Permalink Normal View History

2021-03-04 20:44:49 -05:00
package registry
var (
// DefaultProperties is a map of all valid registry properties with corresponding default property values
2021-03-04 20:44:49 -05:00
DefaultProperties = map[string]string{
2021-08-03 16:23:10 -04:00
"image-repo": "",
"push-on-release": "false",
"server": "",
"push-extra-tags": "",
2021-03-04 20:44:49 -05:00
}
// GlobalProperties is a map of all valid global registry properties
2021-03-04 20:44:49 -05:00
GlobalProperties = map[string]bool{
"image-repo-template": true,
"push-on-release": true,
"server": true,
"push-extra-tags": true,
2021-03-04 20:44:49 -05:00
}
)