mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 17:23:19 -05:00
* Merge from vscode c58aaab8a1cc22a7139b761166a0d4f37d41e998 * fix pipelines * fix strict-null-checks * add missing files
37 lines
812 B
JSON
37 lines
812 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"description": "Configures an attached to container",
|
|
"allowComments": true,
|
|
"type": "object",
|
|
"definitions": {
|
|
"attachContainer": {
|
|
"type": "object",
|
|
"properties": {
|
|
"workspaceFolder": {
|
|
"type": "string",
|
|
"description": "The path of the workspace folder inside the container."
|
|
},
|
|
"forwardPorts": {
|
|
"type": "array",
|
|
"description": "Ports that are forwarded from the container to the local machine.",
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"extensions": {
|
|
"type": "array",
|
|
"description": "An array of extensions that should be installed into the container.",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/definitions/attachContainer"
|
|
}
|
|
]
|
|
}
|