Skip to content

Commit

Permalink
Merge pull request docker#1262 from tonistiigi/docker-driver-features
Browse files Browse the repository at this point in the history
enable other exporters if docker driver uses containerd
  • Loading branch information
tonistiigi authored Aug 9, 2022
2 parents 96c1b05 + 3bc7d4b commit 005bc00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions driver/docker/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ func (d *Driver) Features() map[driver.Feature]bool {
}
}
return map[driver.Feature]bool{
driver.OCIExporter: false,
driver.DockerExporter: false,
driver.CacheExport: false,
driver.OCIExporter: useContainerdSnapshotter,
driver.DockerExporter: useContainerdSnapshotter,
driver.CacheExport: useContainerdSnapshotter,
driver.MultiPlatform: useContainerdSnapshotter,
}
}
Expand Down

0 comments on commit 005bc00

Please sign in to comment.