forked from VertexStudio/rust-gst-tf-gpu
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
31 lines (31 loc) · 820 Bytes
/
devcontainer.json
File metadata and controls
31 lines (31 loc) · 820 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
{
"name": "simbotic-container",
"context": ".",
"dockerFile": "Dockerfile",
"runArgs": [
"--gpus=all",
"--cap-add=SYS_PTRACE",
"--security-opt", "seccomp=unconfined",
"--network", "host",
"-e", "DISPLAY=${env:DISPLAY}",
"-v", "/tmp/.X11-unix:/tmp/.X11-unix",
"-e", "PULSE_SERVER=unix:/tmp/pulseaudio.socket",
"-e", "PULSE_COOKIE=/tmp/pulseaudio.cookie",
"-v", "/tmp/pulseaudio.socket:/tmp/pulseaudio.socket",
"-e", "SSH_AUTH_SOCK=/ssh-agent",
"-v", "${env:SSH_AUTH_SOCK}:/ssh-agent"
],
"extensions": [
"bungcip.better-toml",
"rust-lang.rust",
"vadimcn.vscode-lldb",
"eamodio.gitlens",
"ms-vscode.cpptools",
"vector-of-bool.cmake-tools"
],
"settings": {
"lldb.adapterType": "bundled",
"lldb.executable": "/usr/bin/lldb",
"terminal.integrated.shell.linux": "/bin/bash"
}
}