forked from joshuaybang/python_example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (26 loc) · 829 Bytes
/
devcontainer.json
File metadata and controls
32 lines (26 loc) · 829 Bytes
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
{
"name": "Jupyter",
"build": {
"dockerfile": "Dockerfile"
},
"workspaceMount": "source=${localWorkspaceFolder},target=/home/jovyan/work,type=bind",
"workspaceFolder": "/home/jovyan/work",
"forwardPorts": [8888],
"overrideCommand": false,
//"postStartCommand": "nohup bash -c 'jupyter lab --allow-root --ip 0.0.0.0 --ServerApp.allow_origin=\"*\" &'",
//"remoteUser": "root",
//"runArgs": [],
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": "/opt/conda/bin/python",
},
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"analytic-signal.preview-pdf"
]
}
}
}