Files
base/.devcontainer/devcontainer.json
孟宁 0400452c77
All checks were successful
CI Pipeline / build (push) Successful in 2s
更新 .devcontainer/devcontainer.json
2025-12-14 04:55:51 +00:00

25 lines
679 B
JSON

{
"name": "DevContainerExample",
"image": "devstar.cn/devstar/dev-container:latest",
"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"
}