mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 00:47:48 +08:00

This eases build driver migrations, as it allows aligning the default behavior. See also https://docs.docker.com/build/drivers/ Signed-off-by: Niklas Gehlen <niklas@namespacelabs.com>
12 lines
316 B
Go
12 lines
316 B
Go
package driver
|
|
|
|
type Feature string
|
|
|
|
const OCIExporter Feature = "OCI exporter"
|
|
const DockerExporter Feature = "Docker exporter"
|
|
|
|
const CacheExport Feature = "Cache export"
|
|
const MultiPlatform Feature = "Multi-platform build"
|
|
|
|
const DefaultLoad Feature = "Automatically load images to the Docker Engine image store"
|