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
Copy file name to clipboardExpand all lines: docs/software/container-engine/edf.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,10 @@ EDF files use the [TOML format](https://toml.io/en/). For details about the data
5
5
6
6
## EDF entries
7
7
8
-
If not specified, the default value is an empty value of the corresponding type.
9
-
10
8
### `base_environment`
11
9
12
10
* Type: array or string
11
+
* Default: `""`
13
12
14
13
Ordered list of EDFs that this file inherits from. Parameters from listed environments are evaluated sequentially. Supports up to 10 levels of recursion.
15
14
@@ -32,6 +31,7 @@ Ordered list of EDFs that this file inherits from. Parameters from listed enviro
32
31
### `image`
33
32
34
33
* Type: string
34
+
* Default: **(mandatory)**
35
35
36
36
The container image to use. Can reference a remote Docker/OCI registry or a local Squashfs file as a filesystem path.
37
37
@@ -71,7 +71,7 @@ The container image to use. Can reference a remote Docker/OCI registry or a loca
71
71
### `workdir`
72
72
73
73
* Type: string
74
-
* Default: inherited from image
74
+
* Default: (inherited from image)
75
75
76
76
Initial working directory when the container starts.
77
77
@@ -100,7 +100,7 @@ If true, run the entrypoint from the container image.
100
100
### `writable`
101
101
102
102
* Type: bool
103
-
*Type: `true`
103
+
*Default: `true`
104
104
105
105
If false, the container filesystem is read-only.
106
106
@@ -112,6 +112,7 @@ If false, the container filesystem is read-only.
112
112
### `mounts`
113
113
114
114
* Type: array
115
+
* Default: `[]`
115
116
116
117
List of bind mounts in the format `SOURCE:DESTINATION[:FLAGS]`. Flags are optional and can include `ro`, `private`, etc.
117
118
@@ -139,7 +140,7 @@ List of bind mounts in the format `SOURCE:DESTINATION[:FLAGS]`. Flags are option
139
140
140
141
### `env`
141
142
142
-
* Default: inherited from the host and the image
143
+
* Default: (inherited from the host and the image)
143
144
144
145
Environment variables to set in the container. Empty string values will unset the variable.
145
146
@@ -166,6 +167,8 @@ Environment variables to set in the container. Empty string values will unset th
166
167
167
168
### `annotations`
168
169
170
+
* Default: (none)
171
+
169
172
OCI-like annotations for the container. For more details, refer to the [Annotations][ref-ce-annotations] section.
0 commit comments