-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy pathdevcontainer-template.json
More file actions
30 lines (30 loc) · 1006 Bytes
/
devcontainer-template.json
File metadata and controls
30 lines (30 loc) · 1006 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
{
"id": "go-postgres",
"version": "4.2.0",
"name": "Go & PostgreSQL",
"description": "Use and develop Go + Postgres applications. Includes appropriate runtime args, Go, common tools, extensions, and dependencies.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/go-postgres",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Go version:",
"proposals": [
"1-bookworm",
"1.24-bookworm",
"1.23-bookworm",
"1.22-bookworm",
"1-bullseye",
"1.24-bullseye",
"1.23-bullseye",
"1.22-bullseye"
],
"default": "1.24-bookworm"
}
},
"platforms": ["Go"],
"optionalPaths": [
".github/*"
]
}