-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy pathdevcontainer-template.json
More file actions
32 lines (32 loc) · 1.11 KB
/
devcontainer-template.json
File metadata and controls
32 lines (32 loc) · 1.11 KB
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
{
"id": "postgres",
"version": "3.0.0",
"name": "Python 3 & PostgreSQL",
"description": "Develop applications with Python 3 and PostgreSQL. Includes a Python application container and PostgreSQL server.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/postgres",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Python version (use -trixie, -bookworm, or -bullseye variants on local arm64/Apple Silicon):",
"proposals": [
"3.14-trixie",
"3.13-trixie",
"3.12-trixie",
"3.11-trixie",
"3.10-trixie",
"3.14-bookworm",
"3.13-bookworm",
"3.12-bookworm",
"3.11-bookworm",
"3.10-bookworm"
],
"default": "3.14-trixie"
}
},
"platforms": ["Python"],
"optionalPaths": [
".github/*"
]
}