Skip to content

Commit c83b8c8

Browse files
authored
Merge pull request opencontainers#820 from jhowardmsft/clarifyrootpath
Clarify root path
2 parents 5753194 + 7c9acf6 commit c83b8c8

File tree

4 files changed

+19
-12
lines changed

4 files changed

+19
-12
lines changed

bundle.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,22 @@ See also [MacOS application bundles][macos_bundle] for a similar use of the term
88
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.
99

1010
A Standard Container bundle contains all the information needed to load and run a container.
11-
This MUST include the following artifacts:
11+
This includes the following artifacts:
1212

1313
1. <a name="containerFormat01" />`config.json`: contains configuration data.
1414
This REQUIRED file MUST reside in the root of the bundle directory and MUST be named `config.json`.
1515
See [`config.json`](config.md) for more details.
1616

1717
2. <a name="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`.
2019

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.
2227
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.
2328

2429
[macos_bundle]: https://en.wikipedia.org/wiki/Bundle_%28macOS%29

config.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,15 @@ For example, if a configuration is compliant with version 1.1 of this specificat
2828

2929
**`root`** (object, REQUIRED) specifies the container's root filesystem.
3030

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.
3540
* **`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.
3641

3742
### Example

schema/config-schema.json

-3
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@
5959
"description": "Configures the container's root filesystem.",
6060
"id": "https://opencontainers.org/schema/bundle/root",
6161
"type": "object",
62-
"required": [
63-
"path"
64-
],
6562
"properties": {
6663
"path": {
6764
"id": "https://opencontainers.org/schema/bundle/root/path",

specs-go/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ type User struct {
9696
// Root contains information about the container's root filesystem on the host.
9797
type Root struct {
9898
// Path is the absolute path to the container's root filesystem.
99-
Path string `json:"path"`
99+
Path string `json:"path,omitempty"`
100100
// Readonly makes the root filesystem for the container readonly before the process is executed.
101101
Readonly bool `json:"readonly,omitempty"`
102102
}

0 commit comments

Comments
 (0)