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: bundle.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -8,17 +8,22 @@ See also [MacOS application bundles][macos_bundle] for a similar use of the term
8
8
The definition of a bundle is only concerned with how a container, and its configuration data, are stored on a local filesystem so that it can be consumed by a compliant runtime.
9
9
10
10
A Standard Container bundle contains all the information needed to load and run a container.
This REQUIRED file MUST reside in the root of the bundle directory and MUST be named `config.json`.
15
15
See [`config.json`](config.md) for more details.
16
16
17
17
2. <aname="containerFormat02" />A directory representing the root filesystem of the container.
18
-
While the name of this REQUIRED directory may be arbitrary, users should consider using a conventional name, such as `rootfs`.
19
-
This directory MUST be referenced by [`root`](config.md#root) within the `config.json` file.
18
+
While the name of this directory may be arbitrary, users should consider using a conventional name, such as `rootfs`.
20
19
21
-
While these artifacts MUST all be present in a single directory on the local filesystem, that directory itself is not part of the bundle.
20
+
On Windows, for Windows Server containers, this directory is REQUIRED. For Hyper-V containers, it MUST be omitted.
21
+
22
+
On all other platforms, this field is REQUIRED.
23
+
24
+
If set, this directory MUST be referenced by [`root`](config.md#root) within the `config.json` file.
25
+
26
+
When supplied, while these artifacts MUST all be present in a single directory on the local filesystem, that directory itself is not part of the bundle.
22
27
In other words, a tar archive of a *bundle* will have these artifacts at the root of the archive, not nested within a top-level directory.
Copy file name to clipboardexpand all lines: config.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -28,10 +28,15 @@ For example, if a configuration is compliant with version 1.1 of this specificat
28
28
29
29
**`root`** (object, REQUIRED) specifies the container's root filesystem.
30
30
31
-
***`path`** (string, REQUIRED) Specifies the path to the root filesystem for the container.
32
-
The path is either an absolute path or a relative path to the bundle.
33
-
On Linux, for example, with a bundle at `/to/bundle` and a root filesystem at `/to/bundle/rootfs`, the `path` value can be either `/to/bundle/rootfs` or `rootfs`.
34
-
A directory MUST exist at the path declared by the field.
31
+
***`path`** (string, OPTIONAL) Specifies the path to the root filesystem for the container. The path is either an absolute path or a relative path to the bundle.
32
+
33
+
On Windows, for Windows Server Containers, this field is REQUIRED. For Hyper-V Containers, this field MUST be omitted.
34
+
35
+
On all other platforms, this field is REQUIRED.
36
+
37
+
On Linux, for example, with a bundle at `/to/bundle` and a root filesystem at `/to/bundle/rootfs`, the `path` value can be either `/to/bundle/rootfs` or `rootfs`.
38
+
39
+
If defined, a directory MUST exist at the path declared by the field.
35
40
***`readonly`** (bool, OPTIONAL) If true then the root filesystem MUST be read-only inside the container, defaults to false. On Windows, this field must be omitted or false.
0 commit comments