Test hostRequirements in devcontainer

This commit is contained in:
hubwriter 2021-11-30 14:24:05 +00:00 коммит произвёл GitHub
Родитель d77596bdd6
Коммит b8abd80906
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -32,5 +32,12 @@
"postCreateCommand": "npm ci && npm run build",
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node"
"remoteUser": "node",
// Test hostRequirements setting for machine types - currently undocumented
"hostRequirements": {
"cpus": 8,
"memory": "8gb", // otherwise is bytes - allows for other units like mb, or k
"storage": "32gb" // otherwise is bytes - allows for other units like tb, or mb, or k
}
}