diff options
Diffstat (limited to '.devcontainer.json')
-rw-r--r-- | .devcontainer.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.devcontainer.json b/.devcontainer.json new file mode 100644 index 000000000..6f7fe4bf8 --- /dev/null +++ b/.devcontainer.json @@ -0,0 +1,9 @@ +{ + "dockerFile": "images/default/Dockerfile", + "overrideCommand": true, + "mounts": ["source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind"], + "runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"], + "extensions": [ + "bazelbuild.vscode-bazel" + ] +} |