We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d77596b commit b8abd80Copy full SHA for b8abd80
1 file changed
.devcontainer/devcontainer.json
@@ -32,5 +32,12 @@
32
"postCreateCommand": "npm ci && npm run build",
33
34
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
35
- "remoteUser": "node"
+ "remoteUser": "node",
36
+
37
+ // Test hostRequirements setting for machine types - currently undocumented
38
+ "hostRequirements": {
39
+ "cpus": 8,
40
+ "memory": "8gb", // otherwise is bytes - allows for other units like mb, or k
41
+ "storage": "32gb" // otherwise is bytes - allows for other units like tb, or mb, or k
42
+ }
43
}
0 commit comments