mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	Merge pull request #1262 from tonistiigi/docker-driver-features
enable other exporters if docker driver uses containerd
This commit is contained in:
		@@ -66,9 +66,9 @@ func (d *Driver) Features() map[driver.Feature]bool {
 | 
				
			|||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return map[driver.Feature]bool{
 | 
						return map[driver.Feature]bool{
 | 
				
			||||||
		driver.OCIExporter:    false,
 | 
							driver.OCIExporter:    useContainerdSnapshotter,
 | 
				
			||||||
		driver.DockerExporter: false,
 | 
							driver.DockerExporter: useContainerdSnapshotter,
 | 
				
			||||||
		driver.CacheExport:    false,
 | 
							driver.CacheExport:    useContainerdSnapshotter,
 | 
				
			||||||
		driver.MultiPlatform:  useContainerdSnapshotter,
 | 
							driver.MultiPlatform:  useContainerdSnapshotter,
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user