You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ To provide context for users the following section gives example use cases for e
42
42
#### Application Bundle Builders
43
43
44
44
Application bundle builders can create a [bundle](bundle.md) directory that includes all of the files required for launching an application as a container.
45
-
The bundle contains an OCI [configuration file](config.md) where the builder can specify host-independent details such as [which executable to launch](config.md#process-configuration) and host-specific settings such as [mount](config.md#mounts) locations, [hook](config.md#hooks) paths, Linux [namespaces](config-linux.md#namespaces) and [cgroups](config-linux.md#control-groups).
45
+
The bundle contains an OCI [configuration file](config.md) where the builder can specify host-independent details such as [which executable to launch](config.md#process) and host-specific settings such as [mount](config.md#mounts) locations, [hook](config.md#hooks) paths, Linux [namespaces](config-linux.md#namespaces) and [cgroups](config-linux.md#control-groups).
46
46
Because the configuration includes host-specific settings, application bundle directories copied between two hosts may require configuration adjustments.
Copy file name to clipboardExpand all lines: runtime.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -49,12 +49,12 @@ The lifecycle describes the timeline of events that happen from when a container
49
49
1. OCI compliant runtime's [`create`](runtime.md#create) command is invoked with a reference to the location of the bundle and a unique identifier.
50
50
2. The container's runtime environment MUST be created according to the configuration in [`config.json`](config.md).
51
51
If the runtime is unable to create the environment specified in the [`config.json`](config.md), it MUST generate an error.
52
-
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.
52
+
While the resources requested in the [`config.json`](config.md) MUST be created, the user-specified code (from [`process`](config.md#process)) MUST NOT be run at this time.
53
53
Any updates to [`config.json`](config.md) after this step MUST NOT affect the container.
54
54
3. Once the container is created additional actions MAY be performed based on the features the runtime chooses to support.
55
55
However, some actions might only be available based on the current state of the container (e.g. only available while it is started).
56
56
4. Runtime's [`start`](runtime.md#start) command is invoked with the unique identifier of the container.
57
-
The runtime MUST run the user-specified code, as specified by [`process`](config.md#process-configuration).
57
+
The runtime MUST run the user-specified code, as specified by [`process`](config.md#process).
58
58
5. The container's process is stopped.
59
59
This MAY happen due to them erroring out, exiting, crashing or the runtime's [`kill`](runtime.md#kill) operation being invoked.
60
60
6. Runtime's [`delete`](runtime.md#delete) command is invoked with the unique identifier of the container.
@@ -102,7 +102,7 @@ Any changes made to the [`config.json`](config.md) file after this operation wil
102
102
This operation MUST generate an error if it is not provided the container ID.
103
103
Attempting to start a container that does not exist MUST generate an error.
104
104
Attempting to start an already started container MUST have no effect on the container and MUST generate an error.
105
-
This operation MUST run the user-specified code as specified by [`process`](config.md#process-configuration).
105
+
This operation MUST run the user-specified code as specified by [`process`](config.md#process).
106
106
107
107
Upon successful completion of this operation the `status` property of this container MUST be `running`.
0 commit comments