forked from google/adk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
30 lines (30 loc) · 936 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
30 lines (30 loc) · 936 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
{
"name": "Java 17",
"image": "mcr.microsoft.com/devcontainers/java:1-17-bullseye",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/git-lfs:1": {}
},
"customizations": {
"vscode": {
"extensions": [
"extension-pack-for-java",
"redhat.vscode-xml"
],
"settings": {
"java.jdt.download.server": "latest",
"java.help.firstView": "none",
"java.showBuildStatusOnStart": "notification",
"java.configuration.updateBuildConfiguration": "interactive",
"java.autobuild.enabled": true,
"terminal.integrated.focusOnOutput": false
}
}
},
"remoteUser": "vscode",
"forwardPorts": [8000, 8080, 8081, 8082],
"postCreateCommand": "git config --global credential.helper '!gh auth git-credential' && git config --global lfs.locksverify false",
"hostRequirements": {
"cpus": 4
}
}