forked from xmtp/example-notification-server-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
36 lines (36 loc) · 870 Bytes
/
devcontainer.json
File metadata and controls
36 lines (36 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "Go Dev Container",
"build": {
"context": "..",
"dockerfile": "../dev/docker/devcontainer.Dockerfile"
},
"remoteEnv": {
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}",
"HOST_DOCKER_DEV_FOLDER": "${localWorkspaceFolder}/dev/docker"
},
"customizations": {
"vscode": {
"settings": {
"go.gopath": "/go",
"go.useLanguageServer": true
},
"extensions": [
"golang.go",
"ms-azuretools.vscode-docker"
]
}
},
"postCreateCommand": "go mod tidy",
"forwardPorts": [],
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/common-utils:2": {
"username": "vscode",
"installZsh": true
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"moby": false
}
}
}