mirror of
https://github.com/docker/cli.git
synced 2026-08-24 10:05:37 -05:00
full diff: https://github.com/moby/go-archive/compare/v0.3.2...v0.3.3 Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
13 lines
371 B
Go
13 lines
371 B
Go
// Package archiveoptions defines internal options shared between archive and
|
|
// chrootarchive.
|
|
package archiveoptions
|
|
|
|
import "os"
|
|
|
|
// Options contains extraction resources supplied by internal callers.
|
|
type Options struct {
|
|
// ProcSelfFD references /proc/self/fd as opened before entering a chroot.
|
|
// The caller retains ownership of the file.
|
|
ProcSelfFD *os.File
|
|
}
|