Files
base/.devcontainer/devcontainer.json

25 lines
671 B
JSON
Raw Normal View History

{
"name": "DevContainerExample",
2025-12-14 03:42:58 +00:00
"image": "devstar.cn/base/dev-base:latest",
"postCreateCommand": "gcc -v",
"customizations": {
"vscode": {
"settings": {
"debug.onTaskErrors": "debugAnyway"
},
"extensions": [
2025-10-24 20:29:41 +08:00
"ms-vscode.cpptools",
"ms-azuretools.vscode-docker"
]
}
},
"portsAttributes": {
"3000": {
"label": "Web Server",
"onAutoForward": "notify"
}
},
"initializeCommand": "gdb -ex 'set confirm off' -ex quit", // 初始化GDB配置
2025-12-14 03:42:58 +00:00
"postAttachCommand": "make"
}