forked from tier4/AWML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
65 lines (65 loc) · 1.51 KB
/
devcontainer.json
File metadata and controls
65 lines (65 loc) · 1.51 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "Autoware-cuda",
"build": {
"dockerfile": "Dockerfile",
"args": {
"BASE_IMAGE": "autoware-ml"
}
},
"remoteUser": "autoware",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind",
"workspaceFolder": "/workspace",
"hostRequirements": {
"gpu": true
},
"runArgs": [
"-it",
"--rm",
"--name=autoware-ml",
"--privileged",
"--env",
"DISPLAY=${env:DISPLAY}",
"--env",
"XAUTHORITY=/run/user/1000/gdm/Xauthority",
"--env",
"XDG_RUNTIME_DIR=/run/user/1000",
"--env",
"NVIDIA_DRIVER_CAPABILITIES=all",
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined",
"--net=host",
"--volume=/tmp/.X11-unix/:/tmp/.X11-unix",
"--volume=/etc/localtime:/etc/localtime:ro",
"--volume=/dev/dri:/dev/dri:ro",
"--volume=${env:HOME}/autoware_data:/home/autoware/autoware_data",
"--gpus",
"all",
"--shm-size=64gb"
],
"customizations": {
"vscode": {
"settings.json": {
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/bin/bash"
}
}
},
"extensions": [
// Python,
"ms-python.python",
"ms-toolsai.jupyter",
"eeyore.yapf",
// Git",
"eamodio.gitlens",
"github.vscode-pull-request-github",
// Remote Development
"ms-azuretools.vscode-docker",
// Extra Tools,
"redhat.vscode-yaml",
"yzhang.markdown-all-in-one"
]
}
}
}