remote: allow docker exporter on remote driver

There is no reason why one can't make a docker tarball or
load to Docker instance from remote driver.

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi 2023-05-26 00:18:57 -07:00
parent 341fb65f6f
commit b273db20c3
No known key found for this signature in database
GPG Key ID: AFA9DE5F8AB7AF39

View File

@ -90,7 +90,7 @@ func (d *Driver) Client(ctx context.Context) (*client.Client, error) {
func (d *Driver) Features() map[driver.Feature]bool {
return map[driver.Feature]bool{
driver.OCIExporter: true,
driver.DockerExporter: false,
driver.DockerExporter: true,
driver.CacheExport: true,
driver.MultiPlatform: true,
}