-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
51 lines (51 loc) · 1.79 KB
/
Copy pathdevcontainer.json
File metadata and controls
51 lines (51 loc) · 1.79 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ieddata (docker-in-docker)",
"portsAttributes": {
"6060": {
"label": "ieddata package documentation",
"onAutoForward": "notify",
"protocol": "http"
}
},
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/node:2": {},
"ghcr.io/devcontainers/features/go:1": {},
"ghcr.io/thediveo/devcontainer-features/local-pkgsite:1": {
"port": "6060"
},
"ghcr.io/thediveo/devcontainer-features/pinact:0": {},
"ghcr.io/thediveo/devcontainer-features/go-mod-upgrade:1": {},
"ghcr.io/thediveo/devcontainer-features/lazygit:0": {},
"ghcr.io/devcontainers/features/docker-in-docker:4": {
"version": "latest",
"moby": false // go for the upstream Docker-CE
},
"ghcr.io/thediveo/devcontainer-features/gocover:1": {
"run": "^Test", // skip testable examples
"root": true, // test both as ordinary user and root
"num-programs": "1", // do never run package-level tests in parallel
"race": true, // enable race detector
"verbose": true,
"html": true // generate coverage.html
}
},
"securityOpt": [
"apparmor=unconfined"
],
"remoteEnv": {
"GOPATH": "/home/vscode/go",
"PATH": "/home/vscode/go/bin:/go/bin:/usr/local/go/bin:${localEnv:PATH}"
},
"customizations": {
"vscode": {
"extensions": [
"dnut.rewrap-revived",
"brunnerh.insert-unicode",
"mhutchie.git-graph",
"ms-vscode.makefile-tools",
"docker.docker"
]
}
}
}