2020-12-16 17:40:06 +11:00
|
|
|
{
|
|
|
|
"name": "Node.js",
|
|
|
|
"build": {
|
|
|
|
"dockerfile": "Dockerfile",
|
|
|
|
// Update 'VARIANT' to pick a Node version: 10, 12, 14
|
|
|
|
"args": { "VARIANT": "14" }
|
|
|
|
},
|
|
|
|
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
|
|
|
"settings": {
|
|
|
|
"terminal.integrated.shell.linux": "/bin/bash"
|
|
|
|
},
|
|
|
|
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
|
|
"extensions": [
|
|
|
|
"dbaeumer.vscode-eslint"
|
|
|
|
],
|
|
|
|
|
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
2020-12-17 12:50:38 +11:00
|
|
|
"forwardPorts": [3000],
|
2020-12-16 17:40:06 +11:00
|
|
|
|
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
|
|
// "postCreateCommand": "yarn install",
|
|
|
|
|
|
|
|
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
|
|
"remoteUser": "node"
|
|
|
|
}
|