Skip to content

Commit 301f5b5

Browse files
Merge pull request #614 from hsnabszhdn/fix-incorrect-references
Fix incorrect references
2 parents 1bfc34f + 18b6f66 commit 301f5b5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/specs/devcontainer-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ The `installsAfter` property indicates a "soft dependency" that influences the i
314314
}
315315
```
316316

317-
In the snippet above, `myfeature` must be installed after `foo` and `bar` **if** the Feature is already queued to be installed. If `second` and `third` are not already queued to be installed, this dependency relationship should be ignored.
317+
In the snippet above, `myfeature` must be installed after `foo` and `bar` **if** the Feature is already queued to be installed. If `foo` and `bar` are not already queued to be installed, this dependency relationship should be ignored.
318318

319319
#### The 'overrideFeatureInstallOrder' property
320320

docs/specs/devcontainer-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ See [`workspaceMount` and `workspaceFolder`](devcontainerjson-reference.md#image
168168
Users control the permissions of applications executed in the containers, allowing the developer to control them. The specification takes into account two types of user definitions:
169169

170170
* **Container User**: The user that will be used for all operations that run inside a container. This concept is native to containers. It may be set in the container image, using the `containerUser` property for **image** and **dockerfile** scenarios, or using an orchestratric specific property like `user` property in Docker Compose files.
171-
* **Remote User**: Used to run the [lifecycle](#lifecycle) scripts inside the container. This is also the user tools and editors that connect to the container should use to run their processes. This concept is not native to containers. Set using the `remoteEnv` property in all cases and defaults to the container user.
171+
* **Remote User**: Used to run the [lifecycle](#lifecycle) scripts inside the container. This is also the user tools and editors that connect to the container should use to run their processes. This concept is not native to containers. Set using the `remoteUser` property in all cases and defaults to the container user.
172172

173173
This separation allows the ENTRYPOINT for the image to execute with different permissions than the developer and allows for developers to switch users without recreating their containers.
174174

0 commit comments

Comments
 (0)