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

Replace " : " with ": " #556

Merged
merged 1 commit into from
Sep 7, 2016
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion bundle.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The definition of a bundle is only concerned with how a container, and its confi
A Standard Container bundle contains all the information needed to load and run a container.
This MUST include the following artifacts:

1. `config.json` : contains configuration data.
1. `config.json`: contains configuration data.
This REQUIRED file MUST reside in the root of the bundle directory and MUST be named `config.json`.
See [`config.json`](config.md) for more details.

Expand Down
4 changes: 2 additions & 2 deletions config.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ If a hook returns a non-zero exit code, then an error is logged and the remainin
### Example

```json
"hooks" : {
"hooks": {
"prestart": [
{
"path": "/usr/bin/fix-mounts",
Expand Down Expand Up @@ -334,7 +334,7 @@ Implementations that are reading/processing this configuration file MUST NOT gen

```json
"annotations": {
"com.example.gpu-cores" : "2"
"com.example.gpu-cores": "2"
}
```

Expand Down
6 changes: 3 additions & 3 deletions runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ This MUST be unique across all containers on this host.
There is no requirement that it be unique across hosts.
* **`status`**: (string) is the runtime state of the container.
The value MAY be one of:
* `created` : the container has been created but the user-specified code has not yet been executed
* `running` : the container has been created and the user-specified code is running
* `stopped` : the container has been created and the user-specified code has been executed but is no longer running
* `created`: the container has been created but the user-specified code has not yet been executed
* `running`: the container has been created and the user-specified code is running
* `stopped`: the container has been created and the user-specified code has been executed but is no longer running

Additional values MAY be defined by the runtime, however, they MUST be used to represent new runtime states not defined above.
* **`pid`**: (int) is the ID of the container process, as seen by the host.
Expand Down