Merge pull request #76 from vmarmol/api-init

Adding Initialize() to create a new container.
This commit is contained in:
Victor Marmol 2014-07-08 17:59:04 -07:00
commit 46e34cf630
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)
}