23 lines
511 B
JSON
23 lines
511 B
JSON
|
|
{
|
||
|
|
"name": "Go Dev Environment",
|
||
|
|
"build": {
|
||
|
|
"dockerfile": "Dockerfile",
|
||
|
|
"context": ".."
|
||
|
|
},
|
||
|
|
"customizations": {
|
||
|
|
"vscode": {
|
||
|
|
"settings": {
|
||
|
|
"go.toolsManagement.checkForUpdates": "local",
|
||
|
|
"go.useLanguageServer": true,
|
||
|
|
"go.gopath": "/go"
|
||
|
|
},
|
||
|
|
"extensions": [
|
||
|
|
"golang.go",
|
||
|
|
"ms-vscode.go",
|
||
|
|
]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"forwardPorts": [8080],
|
||
|
|
"postCreateCommand": "go mod tidy",
|
||
|
|
"remoteUser": "vscode"
|
||
|
|
}
|