Skip to content

Commit

Permalink
runtime: "application" -> "container"
Browse files Browse the repository at this point in the history
Michael doesn't like "application" [1], and the runtime spec has
standardized around "container process".

[1]: opencontainers/runtime-spec#107 (comment)

Signed-off-by: W. Trevor King <wking@tremily.us>
  • Loading branch information
wking committed Feb 9, 2017
1 parent 3d50871 commit 56c906d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ Start a container from a [bundle directory][bundle].
* *`<ID>`* Set the container ID to create.
* *Options*
* *`--bundle <PATH>`* Override the path to the [bundle directory][bundle] (defaults to the current working directory).
* *Standard streams:* The runtime MUST attach its standard streams directly to the application process without inspection.
* *Standard streams:* The runtime MUST attach its standard streams directly to the container process without inspection.
* *Environment variables*
* *`LISTEN_FDS`:* The number of file descriptors passed.
For example, `LISTEN_FDS=2` would mean that the runtime MUST pass file descriptors 3 and 4 to the application process (in addition to the [standard streams][standard-streams]) to support [socket activation][systemd-listen-fds].
* *Exit code:* The runtime MUST exit with the application process's exit code.
For example, `LISTEN_FDS=2` would mean that the runtime MUST pass file descriptors 3 and 4 to the container process (in addition to the [standard streams][standard-streams]) to support [socket activation][systemd-listen-fds].
* *Exit code:* The runtime MUST exit with the container process's exit code.

#### Example

Expand Down

0 comments on commit 56c906d

Please sign in to comment.