Skip to content

Commit a865bc0

Browse files
committed
Fix whitespace consistency in config.md
*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]>
1 parent 50b6194 commit a865bc0

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

config.md

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -133,51 +133,51 @@ Note: Any OPTIONAL field MAY also be set to null, which is equivalent to being a
133133
The execution parameters which SHOULD be used as a base when running a container using the image.
134134
This field can be `null`, in which case any execution parameters should be specified at creation of the container.
135135

136-
- **User** *string*, OPTIONAL
136+
- **User** *string*, OPTIONAL
137137

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

143-
- **ExposedPorts** *object*, OPTIONAL
143+
- **ExposedPorts** *object*, OPTIONAL
144144

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:
147147
`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.
150150

151-
- **Env** *array of strings*, OPTIONAL
151+
- **Env** *array of strings*, OPTIONAL
152152

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.
155155

156-
- **Entrypoint** *array of strings*, OPTIONAL
156+
- **Entrypoint** *array of strings*, OPTIONAL
157157

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.
160160

161-
- **Cmd** *array of strings*, OPTIONAL
161+
- **Cmd** *array of strings*, OPTIONAL
162162

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.
166166

167-
- **Volumes** *object*, OPTIONAL
167+
- **Volumes** *object*, OPTIONAL
168168

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.
171171

172-
- **WorkingDir** *string*, OPTIONAL
172+
- **WorkingDir** *string*, OPTIONAL
173173

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.
176176

177-
- **Labels** *object*, OPTIONAL
177+
- **Labels** *object*, OPTIONAL
178178

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).
181181

182182
- **StopSignal** *string*, OPTIONAL
183183

0 commit comments

Comments
 (0)