go-broker-test/.devcontainer/devcontainer.json

24 lines
396 B
JSON
Raw Permalink Normal View History

2025-05-05 22:50:41 +00:00
{
"image": "mcr.microsoft.com/devcontainers/go:latest",
"forwardPorts": [
8080
],
"portsAttributes": {
"8080": {
"label": "Application",
"onAutoForward": "notify"
}
},
"customizations": {
"vscode": {
"extensions": [
"golang.go"
]
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
]
}