ros2aria/.devcontainer/devcontainer.json

43 lines
1.3 KiB
JSON
Raw Normal View History

2021-03-19 10:48:07 +01:00
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
2021-03-19 14:33:48 +01:00
// "dockerFile": "../Dockerfile.devcontainer",
// "build": {
// "args": {
// "WORKSPACE": "${containerWorkspaceFolder}"
// }
// },
2023-06-21 19:21:38 +02:00
"image": "delicjusz/ros2aria",
2021-03-19 10:48:07 +01:00
"remoteUser": "ros",
"runArgs": [
"--network=host",
"--cap-add=SYS_PTRACE",
"--security-opt=seccomp:unconfined",
"--security-opt=apparmor:unconfined",
2021-04-16 14:37:09 +02:00
"--volume=/tmp/.X11-unix:/tmp/.X11-unix"
// "--device=/dev/ttyS0"
2021-03-19 10:48:07 +01:00
],
"containerEnv": {
"DISPLAY": "${localEnv:DISPLAY}"
},
2021-04-16 14:37:09 +02:00
// "workspaceFolder": "/ws",
// "workspaceMount": "source=/home/lab1_5/ros2aria_ws,target=/ws,type=bind,consistency=delegated",
2021-03-19 10:48:07 +01:00
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
2021-03-19 14:33:48 +01:00
"mounts": [
"source=ros2aria-dev-bashhistory,target=/commandhistory,type=volume",
],
2021-03-19 10:48:07 +01:00
"extensions": [
"dotjoshjohnson.xml",
"laurenttreguier.uncrustify",
"ms-azuretools.vscode-docker",
"ms-python.python",
2021-03-19 14:33:48 +01:00
"ms-iot.vscode-ros",
2021-03-19 10:48:07 +01:00
"ms-vscode.cpptools",
"redhat.vscode-yaml",
"smilerobotics.urdf",
"streetsidesoftware.code-spell-checker",
"twxs.cmake",
"yzhang.markdown-all-in-one"
]
2021-03-19 14:33:48 +01:00
}