Files
node/.devcontainer/devcontainer.json

15 lines
406 B
JSON
Raw Normal View History

2019-04-16 19:41:33 -07:00
{
2019-08-05 22:47:53 +00:00
"name": "Node.js Sample",
"dockerFile": "Dockerfile",
"appPort": 3000,
"extensions": [
"dbaeumer.vscode-eslint"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"postCreateCommand": "yarn install",
// Comment out the next line to run as root instead. Linux users, update the next line and
// Dockerfile with your user's UID/GID if not 1000.
"runArgs": [ "-u", "1000" ]
2019-04-16 19:41:33 -07:00
}