-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (32 loc) · 894 Bytes
/
devcontainer.json
File metadata and controls
32 lines (32 loc) · 894 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
{
"name": "Project Sveltos",
"containerEnv": {
"KUBECONFIG": "/vscode/.kube/config",
"WORKDIR": "${localWorkspaceFolder}"
},
"build": {
"dockerfile": "${localWorkspaceFolder}/.devcontainer/Dockerfile",
"context": "${localWorkspaceFolder}",
"args": {
"GO_VERSION": "1.25.6",
"KUBECTX_VERSION": "0.9.5",
"SVELTOSCTL_VERSION": "0.53.0"
}
},
"workspaceFolder": "${localWorkspaceFolder}",
"workspaceMount": "source=${localWorkspaceFolder},target=${localWorkspaceFolder},type=bind",
"mounts": [
"source=${localWorkspaceFolder}/test/.kube,target=/vscode/.kube,type=bind"
],
"runArgs": [],
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"extensions": [],
"settings": {}
}
},
"initializeCommand": "mkdir -p ${localWorkspaceFolder}/test/.kube"
}