-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdevcontainer.json
More file actions
46 lines (46 loc) · 1.27 KB
/
devcontainer.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "linkerd-dev",
"image": "ghcr.io/linkerd/dev:v48",
"customizations": {
"vscode": {
"extensions": [
"DavidAnson.vscode-markdownlint",
// "golang.go",
"kokakiwi.vscode-just",
// "ms-kubernetes-tools.vscode-kubernetes-tools",
"NathanRidley.autotrim",
//"rust-lang.rust-analyzer",
"samverschueren.final-newline",
"tamasfe.even-better-toml"
// "zxh404.vscode-proto3"
],
"settings": {
"files.associations": {
"just-*": "just"
}
},
}
},
"init": true,
"runArgs": [
// Limit container memory usage.
"--memory=12g",
"--memory-swap=12g",
// Use the host network so we can access k3d, etc.
"--net=host"
],
"overrideCommand": false,
"remoteUser": "code",
"mounts": [
{
"source": "/var/run/docker.sock",
"target": "/var/run/docker-host.sock",
"type": "bind"
},
{
"source": "${localEnv:HOME}/.docker",
"target": "/home/code/.docker",
"type": "bind"
}
]
}