-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathdevcontainer-template.json
40 lines (40 loc) · 1.4 KB
/
devcontainer-template.json
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
{
"id": "java-postgres",
"version": "4.0.2",
"name": "Java & PostgreSQL",
"description": "Develop applications with Java and PostgreSQL. Includes a Java application container and PostgreSQL server.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/java-postgres",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Java version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon):",
"proposals": [
"21-bookworm",
"17-bookworm",
"11-bookworm",
"8-bookworm",
"21-bullseye",
"17-bullseye",
"11-bullseye",
"8-bullseye"
],
"default": "21-bullseye"
},
"installMaven": {
"type": "boolean",
"description": "Install Maven, a management tool for Java",
"default": "false"
},
"installGradle": {
"type": "boolean",
"description": "Install Gradle, a build automation tool for multi-language software development",
"default": "false"
}
},
"platforms": ["Java"],
"optionalPaths": [
".github/*"
]
}