forked from devcontainers/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer-template.json
32 lines (32 loc) · 1.07 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
{
"id": "javascript-node-postgres",
"version": "1.1.0",
"name": "Node.js & PostgreSQL",
"description": "Develop applications in Node.js and PostgreSQL. Includes Node.js, eslint, and yarn in a container linked to a Postgres DB container",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node-postgres",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Node.js version (use -bullseye variants on local arm64/Apple Silicon):",
"proposals": [
"18",
"16",
"14",
"18-bullseye",
"16-bullseye",
"14-bullseye",
"18-buster",
"16-buster",
"14-buster"
],
"default": "18"
}
},
"platforms": [
"Node.js",
"JavaScript",
"PostgreSQL DB"
]
}