Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make path to bundle optional #447

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,10 @@ In particular, the state MUST be serialized as JSON.

### Start

`start <container-id> <path-to-bundle>`
`start <container-id> [<path-to-bundle>]`

This operation MUST generate an error if it is not provided a path to the bundle and the container ID to associate with the container.
This operation MUST generate an error if it is not provided the ID of a container.
The path to the bundle is OPTIONAL, the implementation can define it's default path when path to the bundle is absent.
If the ID provided is not unique across all containers within the scope of the runtime, or is not valid in any other way, the implementation MUST generate an error.
Using the data in `config.json`, that are in the bundle's directory, this operation MUST create a new container.
This includes creating the relevant namespaces, resource limits, etc and configuring the appropriate capabilities for the container.
Expand Down