mirror of
https://github.com/docker/cli.git
synced 2026-09-24 07:25:07 -05:00
Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 71eadd4176a968399671e5cb4c8de52c40992b01 Component: engine
19 lines
352 B
Go
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
|
|
}
|