updated devcontainer.json

This commit is contained in:
2025-04-25 23:32:19 +02:00
parent 4250e60bad
commit f3be5a1f20

View File

@@ -1,14 +1,15 @@
{ {
"name": "Go Dev Container", "name": "GoLand Dev Container",
"build": { "image": "golang:1.22",
"dockerfile": "Dockerfile" "features": {},
"customizations": {
"jetbrains": {
"ide": "GoLand"
}
}, },
"settings": { "mounts": [
"go.gopath": "/go" "source=${localWorkspaceFolder},target=/workspace,type=bind"
},
"extensions": [
"golang.Go"
], ],
"forwardPorts": [8080], "workspaceFolder": "/workspace"
"postCreateCommand": "go mod tidy"
} }