From 80ec2bf29be7760fbe4f09fb45498d82c85c3792 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 22 May 2019 11:05:40 +0200 Subject: [PATCH] Add workspaceFolder for single container (fixes microsoft/vscode-remote-release#101) --- .../configuration-editing/schemas/devContainer.schema.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/extensions/configuration-editing/schemas/devContainer.schema.json b/extensions/configuration-editing/schemas/devContainer.schema.json index d0ee0901351..ee5cf7c98ad 100644 --- a/extensions/configuration-editing/schemas/devContainer.schema.json +++ b/extensions/configuration-editing/schemas/devContainer.schema.json @@ -54,6 +54,10 @@ "overrideCommand": { "type": "boolean", "description": "Whether to overwrite the command specified in the image. The default is true." + }, + "workspaceFolder": { + "type": "string", + "description": "The path of the workspace folder inside the container." } } },