2015-04-27 16:25:38 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package daemon
|
|
|
|
|
2015-05-19 20:05:25 +00:00
|
|
|
import "github.com/docker/docker/daemon/execdriver"
|
|
|
|
|
2015-04-27 16:25:38 +00:00
|
|
|
// Not supported on Windows
|
|
|
|
func copyOwnership(source, destination string) error {
|
2015-05-26 16:43:21 +00:00
|
|
|
return nil
|
2015-04-29 22:53:35 +00:00
|
|
|
}
|
|
|
|
|
2015-05-19 20:05:25 +00:00
|
|
|
func (container *Container) setupMounts() ([]execdriver.Mount, error) {
|
2015-05-26 16:43:21 +00:00
|
|
|
return nil, nil
|
2015-04-29 22:53:35 +00:00
|
|
|
}
|
2015-06-08 20:45:28 +00:00
|
|
|
|
|
|
|
func (daemon *Daemon) migrateVolume(id, vfs string) error {
|
|
|
|
return nil
|
|
|
|
}
|