mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #13480 from Microsoft/10662-fixvolumecompile
Windows: Fix volume_windows compile
This commit is contained in:
commit
7853bd29ec
1 changed files with 2 additions and 2 deletions
|
@ -6,9 +6,9 @@ import "github.com/docker/docker/daemon/execdriver"
|
|||
|
||||
// Not supported on Windows
|
||||
func copyOwnership(source, destination string) error {
|
||||
return nil, nil
|
||||
return nil
|
||||
}
|
||||
|
||||
func (container *Container) setupMounts() ([]execdriver.Mount, error) {
|
||||
return nil
|
||||
return nil, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue