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
* 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.
30
30
* The individual EDF entries in the array follow the same search rules as the arguments of the `--environment` CLI option for Slurm; they can be either file paths or filenames without extension if the file is located in the [EDF search path][ref-ce-edf-search-path].
31
31
* This parameter can be a string if there is only one base environment.
@@ -65,7 +65,7 @@ The container image to use. Can reference a remote Docker/OCI registry or a loca
65
65
image = "/path/to/image.squashfs"
66
66
```
67
67
68
-
??? note
68
+
!!! note
69
69
* The full format for remote references is `[USER@][REGISTRY#]IMAGE[:TAG]`.
70
70
* `[REGISTRY#]`: (optional) registry URL, followed by #. Default: Docker Hub.
71
71
* `IMAGE`: image name.
@@ -144,7 +144,7 @@ List of bind mounts in the format `SOURCE:DESTINATION[:FLAGS]`. Flags are option
144
144
mounts = ["${SCRATCH}:/scratch"]
145
145
```
146
146
147
-
??? note
147
+
!!! note
148
148
* Mount flags are separated with a plus symbol, for example: `ro+private`.
149
149
* Optional flags from docker format or OCI (need reference)
150
150
@@ -170,7 +170,7 @@ Environment variables to set in the container. Empty string values will unset th
170
170
DEBUG = "true"
171
171
```
172
172
173
-
??? note
173
+
!!! note
174
174
* By default, containers inherit environment variables from the container image and the host environment, with variables from the image taking precedence.
175
175
* The env table can be used to further customize the container environment by setting, modifying, or unsetting variables.
176
176
* Values of the table entries must be strings. If an entry has a null value, the variable corresponding to the entry key is unset in the container.
0 commit comments