Merge pull request #13480 from Microsoft/10662-fixvolumecompile

Windows: Fix volume_windows compile
Upstream-commit: 7853bd29ec941fe8ee9ff176f0349177d1d54edd
Component: engine
This commit is contained in:
Arnaud Porterie
2015-05-26 10:32:44 -07:00
+2 -2
View File
@@ -6,9 +6,9 @@ import "github.com/docker/docker/daemon/execdriver"
// Not supported on Windows
func copyOwnership(source, destination string) error {
return nil, nil
return nil
}
func (container *Container) setupMounts() ([]execdriver.Mount, error) {
return nil
return nil, nil
}