mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8a7ff5ff74
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>
16 lines
455 B
Go
16 lines
455 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/pkg/archive"
|
|
)
|
|
|
|
// defaultTarCopyOptions is the setting that is used when unpacking an archive
|
|
// for a copy API event.
|
|
func (daemon *Daemon) defaultTarCopyOptions(noOverwriteDirNonDir bool) *archive.TarOptions {
|
|
uidMaps, gidMaps := daemon.GetUIDGIDMaps()
|
|
return &archive.TarOptions{
|
|
NoOverwriteDirNonDir: noOverwriteDirNonDir,
|
|
UIDMaps: uidMaps,
|
|
GIDMaps: gidMaps,
|
|
}
|
|
}
|