This commit is contained in:
Christof Marti 2021-06-21 16:28:03 +02:00
parent 9ce9871136
commit 6ceb014b80
2 changed files with 32 additions and 16 deletions

View file

@ -63,10 +63,6 @@
"type": "string", "type": "string",
"description": "The user the container will be started with. The default is the user on the Docker image." "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."
},
"mounts": { "mounts": {
"type": "array", "type": "array",
"description": "Mount points to set up when creating the container. See Docker's documentation for the --mount option for the supported syntax.", "description": "Mount points to set up when creating the container. See Docker's documentation for the --mount option for the supported syntax.",
@ -255,6 +251,10 @@
"markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```", "markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```",
"additionalProperties": false "additionalProperties": false
}, },
"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."
},
"remoteEnv": { "remoteEnv": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
@ -444,10 +444,6 @@
"type": "string", "type": "string",
"description": "The user the container will be started with. The default is the user on the Docker image." "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."
},
"mounts": { "mounts": {
"type": "array", "type": "array",
"description": "Mount points to set up when creating the container. See Docker's documentation for the --mount option for the supported syntax.", "description": "Mount points to set up when creating the container. See Docker's documentation for the --mount option for the supported syntax.",
@ -636,6 +632,10 @@
"markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```", "markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```",
"additionalProperties": false "additionalProperties": false
}, },
"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."
},
"remoteEnv": { "remoteEnv": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
@ -801,10 +801,6 @@
"type": "string", "type": "string",
"description": "The user the container will be started with. The default is the user on the Docker image." "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."
},
"mounts": { "mounts": {
"type": "array", "type": "array",
"description": "Mount points to set up when creating the container. See Docker's documentation for the --mount option for the supported syntax.", "description": "Mount points to set up when creating the container. See Docker's documentation for the --mount option for the supported syntax.",
@ -993,6 +989,10 @@
"markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```", "markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```",
"additionalProperties": false "additionalProperties": false
}, },
"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."
},
"remoteEnv": { "remoteEnv": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
@ -1162,6 +1162,10 @@
], ],
"description": "Action to take when the VS Code window is closed. The default is to stop the containers." "description": "Action to take when the VS Code window is closed. The default is to stop the containers."
}, },
"overrideCommand": {
"type": "boolean",
"description": "Whether to overwrite the command specified in the image. The default is false."
},
"name": { "name": {
"type": "string", "type": "string",
"description": "A name to show for the workspace folder." "description": "A name to show for the workspace folder."
@ -1316,6 +1320,10 @@
"markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```", "markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```",
"additionalProperties": false "additionalProperties": false
}, },
"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."
},
"remoteEnv": { "remoteEnv": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
@ -1608,6 +1616,10 @@
"markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```", "markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```",
"additionalProperties": false "additionalProperties": false
}, },
"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."
},
"remoteEnv": { "remoteEnv": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {

View file

@ -154,6 +154,10 @@
"markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```", "markdownDescription": "Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```",
"additionalProperties": false "additionalProperties": false
}, },
"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."
},
"remoteEnv": { "remoteEnv": {
"type": "object", "type": "object",
"additionalProperties": { "additionalProperties": {
@ -315,10 +319,6 @@
"type": "string", "type": "string",
"description": "The user the container will be started with. The default is the user on the Docker image." "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."
},
"mounts": { "mounts": {
"type": "array", "type": "array",
"description": "Mount points to set up when creating the container. See Docker's documentation for the --mount option for the supported syntax.", "description": "Mount points to set up when creating the container. See Docker's documentation for the --mount option for the supported syntax.",
@ -486,6 +486,10 @@
"stopCompose" "stopCompose"
], ],
"description": "Action to take when the VS Code window is closed. The default is to stop the containers." "description": "Action to take when the VS Code window is closed. The default is to stop the containers."
},
"overrideCommand": {
"type": "boolean",
"description": "Whether to overwrite the command specified in the image. The default is false."
} }
}, },
"required": [ "required": [