mirror of https://github.com/docker/buildx.git
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"
|