From 906b76cea3b2d04a5156cd6b3db4e65a126b79a0 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 27 Nov 2019 15:37:48 +0000 Subject: [PATCH] Update schemas (microsoft/vscode-remote-release#1155) --- .../schemas/attachContainer.schema.json | 4 ++++ .../schemas/devContainer.schema.json | 12 ++++++++++++ 2 files changed, 16 insertions(+) diff --git a/extensions/configuration-editing/schemas/attachContainer.schema.json b/extensions/configuration-editing/schemas/attachContainer.schema.json index 2bce4ff6f00..ba0df4b33dc 100644 --- a/extensions/configuration-editing/schemas/attachContainer.schema.json +++ b/extensions/configuration-editing/schemas/attachContainer.schema.json @@ -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.", diff --git a/extensions/configuration-editing/schemas/devContainer.schema.json b/extensions/configuration-editing/schemas/devContainer.schema.json index 5a1ace7e41f..631c58e82b5 100644 --- a/extensions/configuration-editing/schemas/devContainer.schema.json +++ b/extensions/configuration-editing/schemas/devContainer.schema.json @@ -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.",