-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathdevcontainer.json
More file actions
45 lines (45 loc) · 1.34 KB
/
devcontainer.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "Java Dapr-AKS-ACA Workshop",
"image": "mcr.microsoft.com/devcontainers/java:1-17-bullseye",
"features": {
// See https://containers.dev/features for list of features
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/azure-cli:1": {},
"ghcr.io/azure/azure-dev/azd:latest": {},
"ghcr.io/devcontainers/features/java:1": {
"version": "none",
"installMaven": true,
"mavenVersion": "3.8.8"
},
"ghcr.io/dapr/cli/dapr-cli:0": {},
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"GitHub.vscode-github-actions",
"ms-azuretools.azure-dev",
"ms-azuretools.vscode-bicep",
"ms-azuretools.vscode-docker",
"vscjava.vscode-java-pack",
"ms-azuretools.vscode-azurecontainerapps",
"ms-vscode.azurecli",
"ms-vscode.azure-account",
"ms-kubernetes-tools.vscode-aks-tools",
"ms-azure-devops.azure-pipelines",
"msazurermtools.azurerm-vscode-tools",
"ms-azuretools.vscode-azureresourcegroups",
"ms-azuretools.vscode-dapr",
"humao.rest-client"
]
}
},
"forwardPorts": [
// Forward ports if needed for local development
],
"postCreateCommand": "",
"remoteUser": "vscode",
"hostRequirements": {
"memory": "8gb"
}
}