devcontainer_run_user_commands
Execute user-defined setup and initialization scripts in a development container for a specified workspace folder, ensuring required commands run after the container starts.
Instructions
Run the user-defined postCreateCommand and postStartCommand scripts in the devcontainerfor the specified workspace folder. Use this to execute setup or initialization commandsafter the devcontainer starts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
outputFilePath | No | ||
workspaceFolder | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"outputFilePath": {
"type": "string"
},
"workspaceFolder": {
"type": "string"
}
},
"required": [
"workspaceFolder"
],
"type": "object"
}