Files
base/.devcontainer/devcontainer.json
孟宁 81cf13d762
All checks were successful
CI Pipeline / build (push) Successful in 4s
更新 .devcontainer/devcontainer.json
2025-12-14 11:19:35 +00:00

24 lines
607 B
JSON

{
"name": "DevContainerExample",
"image": "mcr.microsoft.com/devcontainers/base:dev-ubuntu-20.04",
"postCreateCommand": "gcc -v",
"customizations": {
"vscode": {
"settings": {
"debug.onTaskErrors": "debugAnyway"
},
"extensions": [
"ms-vscode.cpptools",
"ms-azuretools.vscode-docker"
]
}
},
"portsAttributes": {
"3000": {
"label": "Web Server",
"onAutoForward": "notify"
}
},
"postAttachCommand": "make"
}