From 8076181795c50a22f9681637293ba456fb7088d9 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 22 May 2019 17:21:54 +0200 Subject: [PATCH] Machine specific settings in devcontainer.json (fixes microsoft/vscode-remote-release#409) --- .../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 b6fd4469592..38b3c640c50 100644 --- a/extensions/configuration-editing/schemas/devContainer.schema.json +++ b/extensions/configuration-editing/schemas/devContainer.schema.json @@ -17,6 +17,10 @@ "type": "string" } }, + "settings": { + "type": "object", + "description": "Machine specific settings that should be copied into the container." + }, "postCreateCommand": { "type": ["string", "array"], "description": "A command to run after creating the container. 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.",