-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
34 lines (34 loc) · 1.26 KB
/
.devcontainer.json
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
{
"name": "bucketed_scene_flow_eval",
"initializeCommand": "touch ${localWorkspaceFolder}/docker_history.txt",
"build": { "dockerfile": "docker/Dockerfile" },
"privileged": true,
"workspaceMount": "source=${localWorkspaceFolder},target=/project,type=bind,consistency=default",
"workspaceFolder": "/project",
"customizations":
{
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.black-formatter",
"ms-python.isort",
"ms-python.vscode-pylance",
"ms-python.mypy-type-checker",
"ms-azuretools.vscode-docker",
]
}
},
"postStartCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}",
"mounts": [
"source=/bigdata,target=/bigdata,type=bind,consistency=default",
"source=/efs,target=/efs,type=bind,consistency=default",
"source=/efs,target=/Datasets,type=bind,consistency=default",
"source=/efs2,target=/efs2,type=bind,consistency=default",
"source=${localWorkspaceFolder}/docker_history.txt,target=/root/.bash_history,type=bind,consistency=default"
],
"runArgs": [
"--gpus=all",
"-h=bucketedflow",
"--shm-size=16gb"
]
}