Merge pull request #948 from crosbymichael/client-tty

Add client terminal support for IO
This commit is contained in:
Phil Estes
2017-06-05 09:41:11 -04:00
committed by GitHub
21 changed files with 1040 additions and 219 deletions

View File

@@ -71,9 +71,13 @@ const (
PausedStatus
)
type State interface {
type State struct {
// Status is the current status of the container
Status() Status
Status Status
// Pid is the main process id for the container
Pid() uint32
Pid uint32
Stdin string
Stdout string
Stderr string
Terminal bool
}