-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
executable file
·55 lines (55 loc) · 1.7 KB
/
Copy pathdevcontainer.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "Node.js & TypeScript",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "16",
"USERNAME": "node"
}
},
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/zsh"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"mutantdino.resourcemonitor",
"formulahendry.code-runner",
"asciidoctor.asciidoctor-vscode",
"donjayamanne.githistory",
"mhutchie.git-graph",
"alefragnani.bookmarks",
"github.vscode-pull-request-github",
"eamodio.gitlens",
"hoovercj.vscode-power-mode",
"vtrois.gitmoji-vscode",
"dbaeumer.vscode-eslint",
// angular pieces
"angular.ng-template",
// "johnpapa.angular-essentials",
"nrwl.angular-console",
"johnpapa.winteriscoming",
"pkief.material-icon-theme",
"msjsdiag.debugger-for-edge",
"firefox-devtools.vscode-firefox-debug",
"johnpapa.angular2",
"editorconfig.editorconfig",
"eg2.vscode-npm-script",
"johnpapa.vscode-peacock",
"esbenp.prettier-vscode"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
4200,
2015
],
// "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ],
"mounts": [
"source=${localEnv:HOME}/.ssh,target=/home/node/.ssh,type=bind,consistency=cached",
"source=${localEnv:HOME}/.gnupg,target=/home/node/.gnupg,type=bind,consistency=cached",
],
// 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"
}