24 lines
396 B
JSON
24 lines
396 B
JSON
{
|
|
"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"
|
|
]
|
|
} |