crosvm/.devcontainer/with_kvm/devcontainer.json

24 lines
681 B
JSON
Raw Normal View History

{
"image": "gcr.io/crosvm-infra/crosvm_dev:latest",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"esbenp.prettier-vscode",
"ms-python.vscode-pylance",
"foxundermoon.shell-format",
"timonwong.shellcheck"
]
}
},
"runArgs": [
// Allow access to the kvm device so we can run VMs for testing
"--device=/dev/kvm",
"--group-add=kvm",
// Allow a higher PID limit since we launch a lot of test processes.
"--pids-limit=4096"
],
"updateContentCommand": "git config --global --add safe.directory '*' && git submodule update --init"
}