-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
executable file
·31 lines (31 loc) · 1.43 KB
/
devcontainer.json
File metadata and controls
executable file
·31 lines (31 loc) · 1.43 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
{
"name": "Python project",
"image": "mrsono0/python",
// Use 'appPort' to create a container with published ports. If the port isn't working, be sure
// your server accepts connections from all interfaces (0.0.0.0 or '*'), not just localhost.
// In this case, "--host 0.0.0.0 --port 9000" needs to be passed into Flask to make this happen.
// "forwardPorts": [8888, 8889, 8080, 80, 3000, 5000, 5500, 35729, 44335],
"appPort": [
8888
],
// 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.linting.pylintEnabled": true,
"python.linting.pylintPath": "/usr/local/bin/pylint",
"python.linting.enabled": true
},
// Specifies a command to run after the container is created
// "postCreateCommand": "sudo pip install -r requirements.txt",
// "extensions": ["ms-python.python", "tabnine.tabnine-vscode"],
// Comment out to run as root instead.
"remoteUser": "vscode",
"workspaceFolder": "/home/vscode"
// docker toolbox for Mount
// ,"workspaceMount": "src=//c/Users/admin,dst=/workspaces/reactjs,type=bind,consistency=delegated"
}