-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
51 lines (51 loc) · 1.25 KB
/
devcontainer.json
File metadata and controls
51 lines (51 loc) · 1.25 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
//SPDX-FileCopyrightText: Alliander N. V.
//
//SPDX-License-Identifier: Apache-2.0
{
"name": "dev",
"remoteUser": "ubuntu",
"build": {
"dockerfile": "Dockerfile",
"context": "../..",
"args": {
"REMOTE_USER": "ubuntu"
}
},
"workspaceMount": "source=${localWorkspaceFolder},target=/alliander_robotics,type=bind",
"workspaceFolder": "/alliander_robotics",
"overrideCommand": true,
"mounts": [
"source=/tmp/.X11-unix,target=/tmp/.X11-unix,type=bind,consistency=cached",
"source=/dev,target=/dev,type=bind,consistency=cached"
],
"runArgs": [
"--rm",
"--privileged",
"--network=host",
"-e",
"DISPLAY",
"-e",
"NVIDIA_VISIBLE_DEVICES=all",
"-e",
"NVIDIA_DRIVER_CAPABILITIES=all",
"-e",
"RMW_IMPLEMENTATION=rmw_cyclonedds_cpp"
],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"llvm-vs-code-extensions.vscode-clangd",
"charliermarsh.ruff",
"astral-sh.ty",
"kevinglasson.cornflakes-linter",
"tamasfe.even-better-toml",
"ms-azuretools.vscode-docker",
"twxs.cmake",
"kylinideteam.cmake-intellisence",
"redhat.vscode-yaml",
"github.vscode-pull-request-github"
]
}
}
}