mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b9e4b95788
Signed-off-by: John Howard <jhoward@microsoft.com>
16 lines
265 B
Go
16 lines
265 B
Go
// +build windows
|
|
|
|
package daemon
|
|
|
|
// Not supported on Windows
|
|
func copyOwnership(source, destination string) error {
|
|
return nil
|
|
}
|
|
|
|
func (container *Container) prepareVolumes() error {
|
|
return nil
|
|
}
|
|
|
|
func (container *Container) setupMounts() error {
|
|
return nil
|
|
}
|