2025-10-24 02:54:28 +00:00
|
|
|
{
|
|
|
|
|
"name": "DevContainerExample",
|
2025-12-14 10:45:59 +00:00
|
|
|
"image": "mcr.microsoft.com/devcontainers/base:dev-ubuntu-20.04",
|
2025-12-14 11:21:00 +00:00
|
|
|
"postCreateCommand": "sudo apt-get install -y gdb",
|
2025-10-24 02:54:28 +00:00
|
|
|
"customizations": {
|
|
|
|
|
"vscode": {
|
|
|
|
|
"settings": {
|
|
|
|
|
"debug.onTaskErrors": "debugAnyway"
|
|
|
|
|
},
|
|
|
|
|
"extensions": [
|
2025-10-24 20:29:41 +08:00
|
|
|
"ms-vscode.cpptools",
|
|
|
|
|
"ms-azuretools.vscode-docker"
|
|
|
|
|
|
2025-10-24 02:54:28 +00:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"portsAttributes": {
|
|
|
|
|
"3000": {
|
|
|
|
|
"label": "Web Server",
|
|
|
|
|
"onAutoForward": "notify"
|
|
|
|
|
}
|
|
|
|
|
},
|
2025-12-14 11:21:00 +00:00
|
|
|
"initializeCommand": "gdb -ex 'set confirm off' -ex quit", // 初始化GDB配置
|
|
|
|
|
"postAttachCommand": "make debug"
|
2025-10-24 02:54:28 +00:00
|
|
|
}
|