2021-02-18 15:31:14 +00:00
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2021-09-16 18:11:35 -07:00
// https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/javascript-node
2019-04-16 19:41:33 -07:00
{
2020-08-11 13:12:01 -07:00
"name" : "Node.js" ,
"build" : {
"dockerfile" : "Dockerfile" ,
2021-09-16 18:11:35 -07:00
// Update 'VARIANT' to pick a Node version: 16, 14, 12.
// Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local arm64/Apple Silicon.
"args" : { "VARIANT" : "16-bullseye" }
2020-08-11 13:12:01 -07:00
} ,
2019-08-26 14:00:50 -07:00
2022-05-17 12:41:33 -07:00
// Configure tool-specific properties.
"customizations" : {
// Configure properties specific to VS Code.
"vscode" : {
// Set *default* container specific settings.json values on container create.
"settings" : { } ,
// Add the IDs of extensions you want installed when the container is created.
"extensions" : [
"dbaeumer.vscode-eslint"
]
}
} ,
2021-02-18 15:31:14 +00:00
2020-04-09 00:42:27 +00:00
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2020-11-02 13:52:59 +00:00
// "forwardPorts": [3000],
2020-04-09 00:42:27 +00:00
2021-04-19 12:21:28 -07:00
// Use 'portsAttributes' to set default properties for specific forwarded ports. More info: https://code.visualstudio.com/docs/remote/devcontainerjson-reference.
2021-03-16 15:59:13 +00:00
"portsAttributes" : {
2021-04-19 12:21:28 -07:00
"3000" : {
"label" : "Hello Remote World" ,
"onAutoForward" : "notify"
2021-03-16 15:59:13 +00:00
}
} ,
2021-04-14 17:05:05 +00:00
// Use 'otherPortsAttributes' to configure any ports that aren't configured using 'portsAttributes'.
// "otherPortsAttributes": {
// "onAutoForward": "silent"
// },
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand" : "yarn install" ,
2021-02-18 15:31:14 +00:00
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
2020-08-11 13:12:01 -07:00
"remoteUser" : "node"
2020-02-27 15:34:04 +01:00
}