Update comments, set default terminal in container
This commit is contained in:
		@@ -1,18 +1,28 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
	"name": "Python Sample",
 | 
						"name": "Python Sample",
 | 
				
			||||||
	"dockerFile": "Dockerfile",
 | 
						"dockerFile": "Dockerfile",
 | 
				
			||||||
	"appPort": 9000,
 | 
					
 | 
				
			||||||
	"extensions": [
 | 
						// Specifies a list of ports that should be published from the container.
 | 
				
			||||||
		"ms-python.python"
 | 
						"appPort": [9000],
 | 
				
			||||||
	],
 | 
					
 | 
				
			||||||
	"settings": {
 | 
						// Comment out the next line to run as root instead. Linux users, 
 | 
				
			||||||
 | 
						// update Dockerfile with your user's UID/GID if not 1000.
 | 
				
			||||||
 | 
						"runArgs": ["-u", "vscode"],
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// Use 'settings' to set *default* container specific settings.json values on container create. 
 | 
				
			||||||
 | 
						// You can edit these settings after create using File > Preferences > Settings > Remote.
 | 
				
			||||||
 | 
						"settings": { 
 | 
				
			||||||
 | 
							"terminal.integrated.shell.linux": "/bin/bash",
 | 
				
			||||||
		"python.pythonPath": "/usr/local/bin/python",
 | 
							"python.pythonPath": "/usr/local/bin/python",
 | 
				
			||||||
		"python.linting.pylintEnabled": true,
 | 
							"python.linting.pylintEnabled": true,
 | 
				
			||||||
		"python.linting.pylintPath": "/usr/local/bin/pylint",
 | 
							"python.linting.pylintPath": "/usr/local/bin/pylint",
 | 
				
			||||||
		"python.linting.enabled": true
 | 
							"python.linting.enabled": true
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// Specifies a command to run after the container is created
 | 
				
			||||||
	"postCreateCommand": "sudo pip install -r requirements.txt",
 | 
						"postCreateCommand": "sudo pip install -r requirements.txt",
 | 
				
			||||||
	// Comment out the next line to run as root instead. Linux users, 
 | 
					
 | 
				
			||||||
	// update Dockerfile with your user's UID/GID if not 1000.
 | 
						"extensions": [
 | 
				
			||||||
	"runArgs": [ "-u", "vscode" ]
 | 
							"ms-python.python"
 | 
				
			||||||
 | 
						]
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user