Files
base/.devcontainer/devcontainer.json
yinxue 2110c11796
All checks were successful
CI Pipeline / build (push) Successful in 4s
添加docker拓展
2025-10-24 20:29:41 +08:00

25 lines
751 B
JSON

{
"name": "DevContainerExample",
"image": "mcr.microsoft.com/devcontainers/base:dev-ubuntu-20.04",
"postCreateCommand": "sudo apt-get update && sudo apt-get install -y gdb && make",
"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 debug"
}