mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
15 lines
489 B
Go
15 lines
489 B
Go
package daemon // import "github.com/docker/docker/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 {
|
|
return &archive.TarOptions{
|
|
NoOverwriteDirNonDir: noOverwriteDirNonDir,
|
|
UIDMaps: daemon.idMappings.UIDs(),
|
|
GIDMaps: daemon.idMappings.GIDs(),
|
|
}
|
|
}
|