Skip to content

Commit b2e9154

Browse files
committed
Remove requirement for rootfs path to be relative
Closes opencontainers#389 Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
1 parent 77021d9 commit b2e9154

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bundle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ See also [OS X application bundles](http://en.wikipedia.org/wiki/Bundle_%28OS_X%
88
The definition of a bundle is only concerned with how a container, and its configuration data, are stored on a local file system 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 includes the following artifacts which MUST all reside in the same directory on the local filesystem:
11+
This MUST include the following artifacts:
1212

1313
1. `config.json` : contains configuration data.
14-
This REQUIRED file, which MUST be named `config.json`.
14+
This REQUIRED file MUST reside in the root of the bundle directory and MUST be named `config.json`.
1515
When the bundle is packaged up for distribution, this file MUST be included.
1616
See [`config.json`](config.md) for more details.
1717

config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ NOTE that there is no guarantee for forward or backward compatibility for versio
2525

2626
Each container has exactly one *root filesystem*, specified in the *root* object:
2727

28-
* **`path`** (string, required) Specifies the path to the root filesystem for the container, relative to the path where the manifest is. A directory MUST exist at the relative path declared by the field.
28+
* **`path`** (string, required) Specifies the path to the root filesystem for the container. A directory MUST exist at the path declared by the field.
2929
* **`readonly`** (bool, optional) If true then the root filesystem MUST be read-only inside the container. Defaults to false.
3030

3131
### Example

0 commit comments

Comments
 (0)