From e943540509e979dcff14b2ac00e6676004fe5e92 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Sun, 23 Feb 2020 11:51:55 +0100 Subject: [PATCH] Schema update (microsoft/vscode-remote-release#1045) --- .../schemas/devContainer.schema.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/extensions/configuration-editing/schemas/devContainer.schema.json b/extensions/configuration-editing/schemas/devContainer.schema.json index bfa1799e8ad..3cff1bd58f8 100644 --- a/extensions/configuration-editing/schemas/devContainer.schema.json +++ b/extensions/configuration-editing/schemas/devContainer.schema.json @@ -48,6 +48,16 @@ "type": "string", "description": "The user VS Code Server will be started with. The default is the same user as the container." }, + "initializeCommand": { + "type": [ + "string", + "array" + ], + "description": "A command to run locally before anything else. If this is a single string, it will be run in a shell. If this is an array of strings, it will be run as a single command without shell.", + "items": { + "type": "string" + } + }, "postCreateCommand": { "type": [ "string",