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

In this mode buildkit can push directly so pushing manually with docker would result in pushing image twice. Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
13 lines
357 B
Go
13 lines
357 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 DirectPush Feature = "Direct push"
|
|
|
|
const DefaultLoad Feature = "Automatically load images to the Docker Engine image store"
|