-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
40 lines (32 loc) · 866 Bytes
/
devcontainer.json
File metadata and controls
40 lines (32 loc) · 866 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
33
34
35
36
37
38
39
40
{
"name" : "Edge Node Development Container",
"dockerFile" : "Dockerfile",
// "image": "aidamian/ds101_2024",
"workspaceMount": "source=${localWorkspaceFolder},target=/edge_node,type=bind",
"workspaceFolder": "/edge_node",
"runArgs": [
//"--gpus=all", // Use this option if you have a GPU
"--hostname",
"r1edge",
"--name",
"r1edge",
"--privileged"
],
"build": {
"context": "../",
},
"customizations": {
"jetbrains": {
"settings": {
"org.jetbrains.plugins.github:app:GithubSettings.clone_git_using_ssh": true,
"org.jetbrains.plugins.terminal:app:TerminalOptionsProvider.myShellPath": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
}
},
"vscode" : {
"extensions": [
"ms-python.python",
"ms-toolsai.jupyter"
]
}
}
}