mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 12:07:45 +01:00
20 lines
516 B
Go
20 lines
516 B
Go
package registry
|
|
|
|
var (
|
|
// DefaultProperties is a map of all valid registry properties with corresponding default property values
|
|
DefaultProperties = map[string]string{
|
|
"image-repo": "",
|
|
"push-on-release": "false",
|
|
"server": "",
|
|
"push-extra-tags": "",
|
|
}
|
|
|
|
// GlobalProperties is a map of all valid global registry properties
|
|
GlobalProperties = map[string]bool{
|
|
"image-repo-template": true,
|
|
"push-on-release": true,
|
|
"server": true,
|
|
"push-extra-tags": true,
|
|
}
|
|
)
|