Adding Initialize() to create a new container.

Docker-DCO-1.1-Signed-off-by: Victor Marmol <vmarmol@google.com> (github: vmarmol)
This commit is contained in:
Victor Marmol 2014-07-08 14:42:57 -07:00
parent 8e3130d7fd
commit c90a2c53bc
1 changed files with 17 additions and 0 deletions

17
factory.go Normal file
View File

@ -0,0 +1,17 @@
package libcontainer
type Factory interface {
// Initializes a new container with the specified ID and config. The ID is a user-provided
// opaque identifier. Starts an init process with the initialProcess config inside the new
// container.
//
// Returns the new container and the PID of the new init inside the container.
// The caller must reap this PID.
//
// Errors: ID already exists,
// config or initialConfig is invalid,
// system error.
//
// On error, any partially created container parts are cleaned up (the operation is atomic).
Initialize(id string, config *Config, initialProcess *ProcessConfig) (*Container, int, error)
}