-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathdevcontainer-template.json
More file actions
32 lines (32 loc) · 1.05 KB
/
devcontainer-template.json
File metadata and controls
32 lines (32 loc) · 1.05 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": "javascript-node-mongo",
"version": "5.0.0",
"name": "Node.js & Mongo DB",
"description": "Develop applications in Node.js and Mongo DB. Includes Node.js, eslint, and yarn in a container linked to a Mongo DB.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/javascript-node-mongo",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Node.js version (use -bookworm or -bullseye variants on local arm64/Apple Silicon):",
"proposals": [
"24-bookworm",
"22-bookworm",
"20-bookworm",
"24-bullseye",
"22-bullseye",
"20-bullseye"
],
"default": "24-bookworm"
}
},
"platforms": [
"Node.js",
"JavaScript",
"Mongo DB"
],
"optionalPaths": [
".github/*"
]
}