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>
28 lines
656 B
Go
28 lines
656 B
Go
// +build !windows
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/container"
|
|
"github.com/docker/docker/pkg/archive"
|
|
"github.com/docker/docker/pkg/idtools"
|
|
)
|
|
|
|
func (daemon *Daemon) tarCopyOptions(container *container.Container, noOverwriteDirNonDir bool) (*archive.TarOptions, error) {
|
|
if container.Config.User == "" {
|
|
return daemon.defaultTarCopyOptions(noOverwriteDirNonDir), nil
|
|
}
|
|
|
|
user, err := idtools.LookupUser(container.Config.User)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &archive.TarOptions{
|
|
NoOverwriteDirNonDir: noOverwriteDirNonDir,
|
|
ChownOpts: &archive.TarChownOptions{
|
|
UID: user.Uid,
|
|
GID: user.Gid,
|
|
},
|
|
}, nil
|
|
}
|