Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ProcessOption ¶
type ProcessOption interface {
Apply(opts *ProcessOptions)
}
ProcessOption defines a common interface to modify the reader processor These options can be passed to the Exec function in a variadic way to customize the returned Reader instance
func Multiplexed ¶
func Multiplexed() ProcessOption
Multiplexed returns a ProcessOption that configures the command execution to combine stdout and stderr into a single stream without Docker's multiplexing headers.
func WithEnv ¶ added in v0.27.0
func WithEnv(env []string) ProcessOption
func WithUser ¶ added in v0.27.0
func WithUser(user string) ProcessOption
func WithWorkingDir ¶ added in v0.27.0
func WithWorkingDir(workingDir string) ProcessOption
type ProcessOptionFunc ¶
type ProcessOptionFunc func(opts *ProcessOptions)
func (ProcessOptionFunc) Apply ¶
func (fn ProcessOptionFunc) Apply(opts *ProcessOptions)
type ProcessOptions ¶
type ProcessOptions struct { ExecConfig container.ExecOptions Reader io.Reader }
ProcessOptions defines options applicable to the reader processor
func NewProcessOptions ¶ added in v0.27.0
func NewProcessOptions(cmd []string) *ProcessOptions
NewProcessOptions returns a new ProcessOptions instance with the given command and default options: - detach: false - attach stdout: true - attach stderr: true
Click to show internal directories.
Click to hide internal directories.