Skip to content

Commit 906b76c

Browse files
committed
1 parent fb4ca0a commit 906b76c

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

extensions/configuration-editing/schemas/attachContainer.schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
},
2929
"description": "Remote environment variables."
3030
},
31+
"remoteUser": {
32+
"type": "string",
33+
"description": "The user VS Code Server will be started with. The default is the same user as the container."
34+
},
3135
"extensions": {
3236
"type": "array",
3337
"description": "An array of extensions that should be installed into the container.",

extensions/configuration-editing/schemas/devContainer.schema.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
},
3333
"description": "Remote environment variables."
3434
},
35+
"remoteUser": {
36+
"type": "string",
37+
"description": "The user VS Code Server will be started with. The default is the same user as the container."
38+
},
3539
"postCreateCommand": {
3640
"type": [
3741
"string",
@@ -72,6 +76,14 @@
7276
},
7377
"description": "Container environment variables."
7478
},
79+
"containerUser": {
80+
"type": "string",
81+
"description": "The user the container will be started with. The default is the user on the Docker image."
82+
},
83+
"updateRemoteUserUID": {
84+
"type": "boolean",
85+
"description": "Controls whether on Linux the container's user should be updated with the local user's UID and GID. On by default."
86+
},
7587
"runArgs": {
7688
"type": "array",
7789
"description": "The arguments required when starting in the container.",

0 commit comments

Comments
 (0)