-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy path.devcontainer.json
More file actions
33 lines (31 loc) · 834 Bytes
/
Copy path.devcontainer.json
File metadata and controls
33 lines (31 loc) · 834 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
{
"name": "Java",
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
"runArgs": [
"--privileged"
],
"postCreateCommand": "(curl -sSL https://github.com/buildpacks/pack/releases/download/v0.36.0/pack-v0.36.0-linux.tgz | sudo tar -C /usr/local/bin/ --no-same-owner -xzv pack)",
"features": {
"ghcr.io/devcontainers/features/java:latest": {
"jdkDistro": "tem",
"installGradle": true,
"installMaven": true
},
"docker-in-docker": "latest",
"github-cli": "latest"
},
"customizations": {
"vscode": {
"extensions": [
"vscjava.vscode-java-pack",
"redhat.java",
"vscjava.vscode-maven",
"vscjava.vscode-java-dependency",
"VisualStudioExptTeam.vscodeintellicode",
"vscjava.vscode-java-debug",
"vscjava.vscode-spring-initializr",
"ms-azuretools.vscode-docker"
]
}
}
}