Skip to content

Commit f8af5bc

Browse files
author
Ma Shimiao
committed
config.md: small fixes
double quotes are not necessary when setting env value and other sentences fix Signed-off-by: Ma Shimiao <[email protected]>
1 parent a7d6fe6 commit f8af5bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -132,24 +132,24 @@ Note: Any OPTIONAL field MAY also be set to null, which is equivalent to being a
132132

133133
- **Env** *array of strings*, OPTIONAL
134134

135-
Entries are in the format of `VARNAME="var value"`.
135+
Entries are in the format of `VARNAME=VARVALUE`.
136136
These values act as defaults and are merged with any specified when creating a container.
137137

138138
- **Entrypoint** *array of strings*, OPTIONAL
139139

140140
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.
142142

143143
- **Cmd** *array of strings*, OPTIONAL
144144

145145
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.
147147
If an `Entrypoint` value is not specified, then the first entry of the `Cmd` array SHOULD be interpreted as the executable to run.
148148

149149
- **Volumes** *object*, OPTIONAL
150150

151151
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.
153153
**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.
154154

155155
- **WorkingDir** *string*, OPTIONAL

0 commit comments

Comments
 (0)