-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathdevcontainer.json
More file actions
47 lines (47 loc) · 1.52 KB
/
devcontainer.json
File metadata and controls
47 lines (47 loc) · 1.52 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
47
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/java
{
"name": "Java",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
//https://mcr.microsoft.com/v2/vscode/devcontainers/java/tags/list
"image": "mcr.microsoft.com/devcontainers/java:11",
"hostRequirements": {
"cpus": 2
},
"features": {
"ghcr.io/devcontainers/features/java:1": {
"version": "none",
"installMaven": "true",
"installGradle": "true"
},
"ghcr.io/devcontainers/features/sshd:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"dockerDashComposeVersion": "v1"
}
},
"customizations": {
"vscode": {
"extensions": [
"oracle.oracle-java",
"vscjava.vscode-java-pack",
"vscjava.vscode-java-debug",
"vscjava.vscode-maven",
"vscjava.vscode-gradle",
"vscjava.vscode-java-dependency",
"vscjava.vscode-java-test",
"vscjava.vscode-spring-boot-dashboard",
"vscjava.vscode-spring-initializr",
"redhat.java",
"vmware.vscode-boot-dev-pack",
"vmware.vscode-spring-boot",
"ms-azuretools.vscode-docker",
"redhat.vscode-xml",
"redhat.vscode-yaml",
"editorconfig.editorconfig"
]
}
}
}