-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevcontainer.json
More file actions
43 lines (43 loc) · 953 Bytes
/
devcontainer.json
File metadata and controls
43 lines (43 loc) · 953 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
35
36
37
38
39
40
41
42
43
{
"name": "Java",
"image": "mcr.microsoft.com/vscode/devcontainers/java:0-8",
"hostRequirements": {
"cpus": 4,
"memory": "8gb",
"storage": "32gb"
},
"features": {
"ghcr.io/devcontainers/features/java:1.6.2": {
"version": "none",
"installMaven": "false",
"installGradle": "true"
}
},
"postCreateCommand": "java -version",
"customizations": {
"vscode": {
"settings": {
"codestream.serverUrl": "https://codestream-api-v2-us1.service.newrelic.com",
"diffEditor.codeLens": true,
"workbench.colorTheme": "Default Dark Modern",
"remote.extensionKind": {
"codestream.codestream": [
"workspace"
]
}
},
"extensions": [
"redhat.java",
"codestream.codestream",
"ms-azuretools.vscode-docker"
]
},
"codespaces": {
"openFiles": [
"./README.md",
"./src/main/java/org/springframework/samples/petclinic/clm/ClmController.java",
"./demo_queries.nrql"
]
}
}
}