Skip to content

Commit c2c29bc

Browse files
committed
removed last traces of nubix and atym
1 parent 3c79bdf commit c2c29bc

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

  • docs/architecture/containers

docs/architecture/containers/components/container_configuration/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The container configuration defines how a container should be run on the device.
1414
```json
1515
{
1616
"architecture": "amd64",
17-
"os": "nubix",
17+
"os": "ocre",
1818
"config": {
1919
"Entrypoint": "on_init",
2020
"Environment": [
@@ -36,7 +36,7 @@ The elements within the container configuration are defined as follows:
3636

3737
#### Required:
3838
- `architecture` (*string*): CPU architecture of the binaries in this image; this value MUST be set to **wasm**. This parameter also supports an optional variant value. For example, `thumbv4`.
39-
- `os` (*string*): Operating system which this image is built to run on; this MUST be **nubix**.
39+
- `os` (*string*): Operating system which this image is built to run on; this MUST be **ocre**.
4040
- `config` (*object*): Specifies the parameters used for execution
4141
- `EntryPoint`: The WASM function to call on container start.
4242
- `Environment`: Array of variables to set in the container environment.

docs/architecture/containers/container_image_manifest/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ The elements within the container configuration are defined as follows:
4848
- `schemaVersion` (*int*): Image manifest schema version; per the OCI Image Spec this
4949
MUST be **2**.
5050
- `mediaType` (*string*): Required type of this manifest file. For Ocre containers, this MUST be
51-
**application/vnd.nubixio.image.manifest.v1+json**.
51+
**application/vnd.ocre.image.manifest.v1+json**.
5252
- `config` (*object*): References the configuration object for this container image. Schema follows the [OCI Content Descriptor schema](https://github.com/opencontainers/image-spec/blob/main/descriptor.md). It has the
5353
following restrictions:
54-
- `mediaType` must be set to **application/vnd.nubixio.image.config.v1+json**.
55-
- `layers` (*array*): List of elements that comprise this container image. Each layer is a descriptor. One and only one layer MUST be of type **application/vnd.nubixio.image.layer.v1.wasm** or **application/vnd.nubixio.image.layer.v1.wasm+aot**.
54+
- `mediaType` must be set to **application/vnd.ocre.image.config.v1+json**.
55+
- `layers` (*array*): List of elements that comprise this container image. Each layer is a descriptor. One and only one layer MUST be of type **application/vnd.ocre.image.layer.v1.wasm** or **application/vnd.ocre.image.layer.v1.wasm+aot**.

0 commit comments

Comments
 (0)