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
+13-17Lines changed: 13 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ EDF files use the [TOML format](https://toml.io/en/). For details about the data
7
7
8
8
### `base_environment`
9
9
10
-
* Type: array or string
11
-
* Default: `""`
10
+
| Type|array or string|
11
+
| Default|`""`|
12
12
13
13
Ordered list of EDFs that this file inherits from. Parameters from listed environments are evaluated sequentially. Supports up to 10 levels of recursion.
14
14
@@ -30,8 +30,8 @@ Ordered list of EDFs that this file inherits from. Parameters from listed enviro
30
30
31
31
### `image`
32
32
33
-
* Type: string
34
-
* Default: **(mandatory)**
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
@@ -70,8 +70,8 @@ The container image to use. Can reference a remote Docker/OCI registry or a loca
70
70
71
71
### `workdir`
72
72
73
-
* Type: string
74
-
* Default: (inherited from image)
73
+
| Type|string|
74
+
| Default|(inherited from image)|
75
75
76
76
Initial working directory when the container starts.
77
77
@@ -87,8 +87,8 @@ Initial working directory when the container starts.
87
87
88
88
### `entrypoint`
89
89
90
-
* Type: bool
91
-
* Default: `true`
90
+
| Type|bool|
91
+
| Default|`true`|
92
92
93
93
If true, run the entrypoint from the container image.
94
94
@@ -99,8 +99,8 @@ If true, run the entrypoint from the container image.
99
99
100
100
### `writable`
101
101
102
-
* Type: bool
103
-
* Default: `true`
102
+
| Type|bool|
103
+
| Default|`true`|
104
104
105
105
If false, the container filesystem is read-only.
106
106
@@ -111,8 +111,8 @@ If false, the container filesystem is read-only.
111
111
112
112
### `mounts`
113
113
114
-
* Type: array
115
-
* Default: `[]`
114
+
| Type|array|
115
+
| Default|`[]`|
116
116
117
117
List of bind mounts in the format `SOURCE:DESTINATION[:FLAGS]`. Flags are optional and can include `ro`, `private`, etc.
118
118
@@ -140,9 +140,7 @@ List of bind mounts in the format `SOURCE:DESTINATION[:FLAGS]`. Flags are option
140
140
141
141
### `env`
142
142
143
-
* Default: (inherited from the host and the image)
144
-
145
-
Environment variables to set in the container. Empty string values will unset the variable.
143
+
Environment variables to set in the container. Empty string values will unset the variable. Inherited from the host and the image by default.
146
144
147
145
!!! example
148
146
* Basic `env` block
@@ -167,8 +165,6 @@ Environment variables to set in the container. Empty string values will unset th
167
165
168
166
### `annotations`
169
167
170
-
* Default: (none)
171
-
172
168
OCI-like annotations for the container. For more details, refer to the [Annotations][ref-ce-annotations] section.
0 commit comments