-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
34 lines (34 loc) · 956 Bytes
/
devcontainer.json
File metadata and controls
34 lines (34 loc) · 956 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
{
"name": "Kubebuilder DevContainer",
"image": "golang:1.24",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/common-utils": {
"installOhMyZsh": true,
"configureZshAsDefaultShell": true,
"installOhMyZshConfig": true,
"installZsh": true,
"upgradePackages": true
},
"ghcr.io/dhoeric/features/act": {}
},
"runArgs": [
"--network=host"
],
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [
"ms-kubernetes-tools.vscode-kubernetes-tools",
"ms-azuretools.vscode-docker"
]
}
},
"onCreateCommand": "bash .devcontainer/post-install.sh",
"mounts": [
"source=${localWorkspaceFolder}/../network-services-operator,target=/workspaces/network-services-operator,type=bind"
]
}