Merge pull request #485 from duglin/FixStatus

Add 'status' to state.go
This commit is contained in:
Vincent Batts 2016-06-03 13:44:40 -04:00
commit eeeecb0f44
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,8 @@ type State struct {
Version string `json:"version"`
// ID is the container ID
ID string `json:"id"`
// Status is the runtime state of the container.
Status string `json:"status"`
// Pid is the process id for the container's main process.
Pid int `json:"pid"`
// BundlePath is the path to the container's bundle directory.