This commit is contained in:
Christof Marti 2019-11-27 15:37:48 +00:00
parent fb4ca0a7bc
commit 906b76cea3
2 changed files with 16 additions and 0 deletions

View file

@ -28,6 +28,10 @@
},
"description": "Remote environment variables."
},
"remoteUser": {
"type": "string",
"description": "The user VS Code Server will be started with. The default is the same user as the container."
},
"extensions": {
"type": "array",
"description": "An array of extensions that should be installed into the container.",

View file

@ -32,6 +32,10 @@
},
"description": "Remote environment variables."
},
"remoteUser": {
"type": "string",
"description": "The user VS Code Server will be started with. The default is the same user as the container."
},
"postCreateCommand": {
"type": [
"string",
@ -72,6 +76,14 @@
},
"description": "Container environment variables."
},
"containerUser": {
"type": "string",
"description": "The user the container will be started with. The default is the user on the Docker image."
},
"updateRemoteUserUID": {
"type": "boolean",
"description": "Controls whether on Linux the container's user should be updated with the local user's UID and GID. On by default."
},
"runArgs": {
"type": "array",
"description": "The arguments required when starting in the container.",