This changes the long-standing bug of copy operations not preserving the UID/GID information after the files arrive to the container. Signed-off-by: Erik Hollensbe <github@hollensbe.org> Upstream-commit: 8a7ff5ff746a77e0be601c11540562341b2228c1 Component: engine
13 lines
318 B
Go
13 lines
318 B
Go
// +build windows
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/pkg/archive"
|
|
)
|
|
|
|
func (daemon *Daemon) tarCopyOptions(container *container.Container, noOverwriteDirNonDir bool) (*archive.TarOptions, error) {
|
|
return daemon.defaultTarCopyOptions(noOverwriteDirNonDir), nil
|
|
}
|