From b273db20c35ab79e0bf34f1c9701f68c323c1d5d Mon Sep 17 00:00:00 2001 From: Tonis Tiigi Date: Fri, 26 May 2023 00:18:57 -0700 Subject: [PATCH] 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 --- driver/remote/driver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/remote/driver.go b/driver/remote/driver.go index eaafc2ac..d446f226 100644 --- a/driver/remote/driver.go +++ b/driver/remote/driver.go @@ -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, }