Files
base/.devcontainer/devcontainer.json
孟宁 027639c9c3
All checks were successful
CI Pipeline / build (push) Successful in 2s
更新 .devcontainer/devcontainer.json
2025-12-14 10:45:59 +00:00

25 lines
693 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"
}
},
"initializeCommand": "gdb -ex 'set confirm off' -ex quit", // 初始化GDB配置
"postAttachCommand": "make"
}