Update comments
This commit is contained in:
		@@ -1,15 +1,24 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	"name": "Node.js Sample",
 | 
					    "name": "Node.js Sample",
 | 
				
			||||||
	"dockerFile": "Dockerfile",
 | 
					    "dockerFile": "Dockerfile",
 | 
				
			||||||
	"appPort": 3000,
 | 
					
 | 
				
			||||||
	"extensions": [
 | 
					    // Specifies a list of ports that should be published.
 | 
				
			||||||
		"dbaeumer.vscode-eslint"
 | 
					    "appPort": [3000],
 | 
				
			||||||
	],
 | 
					
 | 
				
			||||||
	"settings": {
 | 
					    // Comment out the next line to run as root instead. Linux users, update
 | 
				
			||||||
		"terminal.integrated.shell.linux": "/bin/bash"
 | 
					    // Dockerfile with your user's UID/GID if not 1000.
 | 
				
			||||||
	},
 | 
					    "runArgs": [ "-u", "node" ],
 | 
				
			||||||
	"postCreateCommand": "yarn install",
 | 
					
 | 
				
			||||||
	// Comment out the next line to run as root instead. Linux users, update
 | 
						// Use 'settings' to set *default* container specific settings.json values on container create. 
 | 
				
			||||||
	// Dockerfile with your user's UID/GID if not 1000.
 | 
						// You can edit these settings after create using File > Preferences > Settings > Remote.
 | 
				
			||||||
	"runArgs": [ "-u", "node" ]
 | 
					    "settings": {
 | 
				
			||||||
 | 
					        "terminal.integrated.shell.linux": "/bin/bash"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    // Specifies a command that should be run after the container has been created.
 | 
				
			||||||
 | 
					    "postCreateCommand": "yarn install",
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    "extensions": [
 | 
				
			||||||
 | 
					        "dbaeumer.vscode-eslint"
 | 
				
			||||||
 | 
					    ]
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user