Files
base/.devcontainer/devcontainer.json

25 lines
720 B
JSON
Raw Normal View History

{
"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",
"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"
}
},
2025-12-14 11:21:00 +00:00
"initializeCommand": "gdb -ex 'set confirm off' -ex quit", // 初始化GDB配置
"postAttachCommand": "make debug"
}