mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
The DOKKU_APP_TYPE has long since ceased to be the correct way to specify the builder for the application. It's only usage has been during the detection phase, specifically to ensure that the herokuish plugin injects the correct docker arguments during the build. As such, it is safe to migrate away to a property in a patch release. Users that seek to set a specific builder should use 'dokku builder:set $APP selected' instead. Refs #7863
17 lines
383 B
Go
17 lines
383 B
Go
package builder
|
|
|
|
var (
|
|
// DefaultProperties is a map of all valid builder properties with corresponding default property values
|
|
DefaultProperties = map[string]string{
|
|
"selected": "",
|
|
"detected": "",
|
|
"build-dir": "",
|
|
}
|
|
|
|
// GlobalProperties is a map of all valid global builder properties
|
|
GlobalProperties = map[string]bool{
|
|
"selected": true,
|
|
"build-dir": true,
|
|
}
|
|
)
|