-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdevcontainer.json
31 lines (31 loc) · 1014 Bytes
/
devcontainer.json
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
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/dotnet
{
"name": "C# (.NET)",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/dotnet:0-6.0",
"features": {
"azure-cli": "latest",
"ghcr.io/devcontainers/features/java:1": {
"version": "17",
"installMaven": "false",
"installGradle": "true"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "22.6.0",
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"kubectl-helm-minikube": {
"version": "latest",
"helm": "latest",
"minikube": "none"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker"
]
}
}
}