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: config.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -132,24 +132,24 @@ Note: Any OPTIONAL field MAY also be set to null, which is equivalent to being a
132
132
133
133
-**Env***array of strings*, OPTIONAL
134
134
135
-
Entries are in the format of `VARNAME="var value"`.
135
+
Entries are in the format of `VARNAME=VARVALUE`.
136
136
These values act as defaults and are merged with any specified when creating a container.
137
137
138
138
-**Entrypoint***array of strings*, OPTIONAL
139
139
140
140
A list of arguments to use as the command to execute when the container starts.
141
-
This value acts as a default and is replaced by an entrypoint specified when creating a container.
141
+
These values act as default and are replaced by an entrypoint specified when creating a container.
142
142
143
143
-**Cmd***array of strings*, OPTIONAL
144
144
145
145
Default arguments to the entrypoint of the container.
146
-
These values act as defaults and are replaced with any specified when creating a container.
146
+
These values act as defaults and are replaced by any specified when creating a container.
147
147
If an `Entrypoint` value is not specified, then the first entry of the `Cmd` array SHOULD be interpreted as the executable to run.
148
148
149
149
-**Volumes***object*, OPTIONAL
150
150
151
151
A set of directories which SHOULD be created as data volumes in a container running this image.
152
-
If a file or folder exists within the image with the same path as a data volume, that file or folder is replaced with the data volume and is never merged.
152
+
If a file or folder exists within the image with the same path as a data volume, that file or folder is replaced by the data volume and is never merged.
153
153
**NOTE:** This JSON structure value is unusual because it is a direct JSON serialization of the Go type `map[string]struct{}` and is represented in JSON as an object mapping its keys to an empty object.
0 commit comments