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
Annotations define arbitrary metadata for containers in the form of key-value pairs. Within the EDF, annotations are designed to be similar in appearance and behavior to those defined by the [OCI Runtime Specification](https://github.com/opencontainers/runtime-spec/blob/main/config.md#annotations). Annotation keys usually express a hierarchical namespace structure, with domains separated by "." (full stop) characters.
322
322
@@ -634,9 +634,9 @@ Ordered list of EDFs that this file inherits from. Parameters from listed enviro
634
634
<details>
635
635
<summary>Notes</summary>
636
636
637
-
* Parameters from the listed environments are evaluated sequentially, adding new entries or overwriting previous ones, before evaluating the parameters from the current EDF. In other words, the current EDF inherits the parameters from the EDFs listed in base_environment. When evaluating mounts or env parameters, values from downstream EDFs are appended to inherited values.
637
+
* Parameters from the listed environments are evaluated sequentially, adding new entries or overwriting previous ones, before evaluating the parameters from the current EDF. In other words, the current EDF inherits the parameters from the EDFs listed in`base_environment`. When evaluating `mounts` or `env` parameters, values from downstream EDFs are appended to inherited values.
638
638
639
-
* The individual EDF entries in the array follow the same search rules as the arguments of the --environment CLI option forSlurm; they can be either file paths or filenames without extension if the file is locatedin the [EDF search path](#edf-search-path).
639
+
* The individual EDF entries in the array follow the same search rules as the arguments of the `--environment` CLI option forSlurm; they can be either file paths or filenames without extension if the file is locatedin the [EDF search path](#edf-search-path).
640
640
641
641
* This parameter can be a string if there is only one base environment.
642
642
</details>
@@ -662,11 +662,11 @@ The container image to use. Can reference a remote Docker/OCI registry or a loca
662
662
<details>
663
663
<summary>Notes</summary>
664
664
665
-
* The full format for remote references is [USER@][REGISTRY#]IMAGE[:TAG].
666
-
* [REGISTRY#]: (optional) registry URL, followed by #. Default: Docker Hub.
667
-
* IMAGE: image name.
668
-
* [:TAG]: (optional) image tag name, preceded by :.
669
-
* The registry user can also be specified in the $HOME/.config/enroot/.credentials file.
665
+
* The full format for remote references is `[USER@][REGISTRY#]IMAGE[:TAG]`.
666
+
*`[REGISTRY#]`: (optional) registry URL, followed by #. Default: Docker Hub.
667
+
*`IMAGE`: image name.
668
+
*`[:TAG]`: (optional) image tag name, preceded by :.
669
+
* The registry user can also be specified in the `$HOME/.config/enroot/.credentials` file.
670
670
</details>
671
671
672
672
<details>
@@ -710,7 +710,7 @@ Initial working directory when the container starts. Default: inherited from ima
710
710
workdir = "/home/user/projects"
711
711
```
712
712
713
-
* Workdir pointing to the /tmp directory
713
+
* Workdir pointing to the `/tmp` directory
714
714
```bash
715
715
workdir = "/tmp"
716
716
```
@@ -745,12 +745,12 @@ writable = true
745
745
746
746
### (ARRAY) mounts
747
747
748
-
List of bind mounts in the format SOURCE:DESTINATION[:FLAGS]. Flags are optional and can include ro, private, etc.
748
+
List of bind mounts in the format `SOURCE:DESTINATION[:FLAGS]`. Flags are optional and can include `ro`, `private`, etc.
749
749
750
750
<details>
751
751
<summary>Notes</summary>
752
752
753
-
* Mount flags are separated with a plus symbol, for example: ro+private.
753
+
* Mount flags are separated with a plus symbol, for example: `ro+private`.
754
754
* Optional flags from docker format or OCI (need reference)
755
755
</details>
756
756
@@ -762,7 +762,7 @@ List of bind mounts in the format SOURCE:DESTINATION[:FLAGS]. Flags are optional
0 commit comments