Files
cli/components/engine/daemon/volumes_windows.go
T
John Howard 93011f5563 Windows: Fix PR13278 compile break
Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 71eadd4176a968399671e5cb4c8de52c40992b01
Component: engine
2015-06-08 13:47:09 -07:00

19 lines
352 B
Go

// +build windows
package daemon
import "github.com/docker/docker/daemon/execdriver"
// Not supported on Windows
func copyOwnership(source, destination string) error {
return nil
}
func (container *Container) setupMounts() ([]execdriver.Mount, error) {
return nil, nil
}
func (daemon *Daemon) migrateVolume(id, vfs string) error {
return nil
}