Files
gvisor/.devcontainer.json
Adin Scannell 4fcf8b2282 Update .devcontainer.json
Provide appropriate capabilities and adjust Docker socket.
2021-02-01 12:16:48 -08:00

10 lines
311 B
JSON

{
"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"
]
}