Merge pull request #463 from wking/no-create-api-caveat

runtime: Drop create-specific API caveat from lifecycle
This commit is contained in:
Qiang Huang 2016-05-28 09:31:56 +08:00
commit 0dde4f9f4b
1 changed files with 0 additions and 1 deletions

View File

@ -33,7 +33,6 @@ See [Query State](#query-state) for information on retrieving the state of a con
## Lifecycle
The lifecycle describes the timeline of events that happen from when a container is created to when it ceases to exist.
1. OCI compliant runtime's `create` command is invoked with a reference to the location of the bundle and a unique identifier.
How these references are passed to the runtime is an implementation detail.
2. The container's runtime environment MUST be created according to the configuration in [`config.json`](config.md).
While the resources requested in the [`config.json`](config.md) MUST be created, the user-specified code (from [`process`](config.md#process-configuration) MUST NOT be run at this time.
Any updates to `config.json` after this step MUST NOT affect the container.