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
*Some* of the sub-items of `config` were inconsistently indented (some using three spaces, some using two) -- adjusted to two to match the rest of the file.
Signed-off-by: Tianon Gravi <[email protected]>
Copy file name to clipboardExpand all lines: config.md
+29-29Lines changed: 29 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -133,51 +133,51 @@ Note: Any OPTIONAL field MAY also be set to null, which is equivalent to being a
133
133
The execution parameters which SHOULD be used as a base when running a container using the image.
134
134
This field can be `null`, in which case any execution parameters should be specified at creation of the container.
135
135
136
-
-**User***string*, OPTIONAL
136
+
-**User***string*, OPTIONAL
137
137
138
-
The username or UID which is a platform-specific structure that allows specific control over which user the process run as.
139
-
This acts as a default value to use when the value is not specified when creating a container.
140
-
For Linux based systems, all of the following are valid: `user`, `uid`, `user:group`, `uid:gid`, `uid:group`, `user:gid`.
141
-
If `group`/`gid` is not specified, the default group and supplementary groups of the given `user`/`uid` in `/etc/passwd` from the container are applied.
138
+
The username or UID which is a platform-specific structure that allows specific control over which user the process run as.
139
+
This acts as a default value to use when the value is not specified when creating a container.
140
+
For Linux based systems, all of the following are valid: `user`, `uid`, `user:group`, `uid:gid`, `uid:group`, `user:gid`.
141
+
If `group`/`gid` is not specified, the default group and supplementary groups of the given `user`/`uid` in `/etc/passwd` from the container are applied.
142
142
143
-
-**ExposedPorts***object*, OPTIONAL
143
+
-**ExposedPorts***object*, OPTIONAL
144
144
145
-
A set of ports to expose from a container running this image.
146
-
Its keys can be in the format of:
145
+
A set of ports to expose from a container running this image.
146
+
Its keys can be in the format of:
147
147
`port/tcp`, `port/udp`, `port` with the default protocol being `tcp` if not specified.
148
-
These values act as defaults and are merged with any specified when creating a container.
149
-
**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.
148
+
These values act as defaults and are merged with any specified when creating a container.
149
+
**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.
150
150
151
-
-**Env***array of strings*, OPTIONAL
151
+
-**Env***array of strings*, OPTIONAL
152
152
153
-
Entries are in the format of `VARNAME=VARVALUE`.
154
-
These values act as defaults and are merged with any specified when creating a container.
153
+
Entries are in the format of `VARNAME=VARVALUE`.
154
+
These values act as defaults and are merged with any specified when creating a container.
155
155
156
-
-**Entrypoint***array of strings*, OPTIONAL
156
+
-**Entrypoint***array of strings*, OPTIONAL
157
157
158
-
A list of arguments to use as the command to execute when the container starts.
159
-
These values act as defaults and may be replaced by an entrypoint specified when creating a container.
158
+
A list of arguments to use as the command to execute when the container starts.
159
+
These values act as defaults and may be replaced by an entrypoint specified when creating a container.
160
160
161
-
-**Cmd***array of strings*, OPTIONAL
161
+
-**Cmd***array of strings*, OPTIONAL
162
162
163
-
Default arguments to the entrypoint of the container.
164
-
These values act as defaults and may be replaced by any specified when creating a container.
165
-
If an `Entrypoint` value is not specified, then the first entry of the `Cmd` array SHOULD be interpreted as the executable to run.
163
+
Default arguments to the entrypoint of the container.
164
+
These values act as defaults and may be replaced by any specified when creating a container.
165
+
If an `Entrypoint` value is not specified, then the first entry of the `Cmd` array SHOULD be interpreted as the executable to run.
166
166
167
-
-**Volumes***object*, OPTIONAL
167
+
-**Volumes***object*, OPTIONAL
168
168
169
-
A set of directories describing where the process is likely to write data specific to a container instance.
170
-
**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.
169
+
A set of directories describing where the process is likely to write data specific to a container instance.
170
+
**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.
171
171
172
-
-**WorkingDir***string*, OPTIONAL
172
+
-**WorkingDir***string*, OPTIONAL
173
173
174
-
Sets the current working directory of the entrypoint process in the container.
175
-
This value acts as a default and may be replaced by a working directory specified when creating a container.
174
+
Sets the current working directory of the entrypoint process in the container.
175
+
This value acts as a default and may be replaced by a working directory specified when creating a container.
176
176
177
-
-**Labels***object*, OPTIONAL
177
+
-**Labels***object*, OPTIONAL
178
178
179
-
The field contains arbitrary metadata for the container.
180
-
This property MUST use the [annotation rules](annotations.md#rules).
179
+
The field contains arbitrary metadata for the container.
180
+
This property MUST use the [annotation rules](annotations.md#rules).
0 commit comments