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
|
|
}
|