features/.devcontainer.json

19 lines
458 B
JSON
Raw Normal View History

{
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:0-18",
2022-09-27 01:27:25 +03:00
"remoteUser": "node",
"customizations": {
"vscode": {
"extensions": [
"mads-hartmann.bash-ide-vscode"
]
}
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:1": {}
},
"postCreateCommand": "npm install -g @devcontainers/cli",
"hostRequirements": {
"cpus": 4
}
}