devcontainer optimization

This commit is contained in:
Jörn-Michael Miehe 2024-03-13 22:09:07 +00:00
parent 8e424b675e
commit 23cf62e01f

View file

@ -4,14 +4,6 @@
"name": "Rust",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/rust:1-1-bookworm",
// Use 'mounts' to make the cargo cache persistent in a Docker Volume.
// "mounts": [
// {
// "source": "devcontainer-cargo-cache-${devcontainerId}",
// "target": "/usr/local/cargo",
// "type": "volume"
// }
// ]
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers-contrib/features/apt-get-packages:1": {
@ -37,10 +29,22 @@
},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
"runArgs": [
"--device-cgroup-rule=c 189:* rmw"
],
"mounts": [
"source=/dev/bus/usb,target=/dev/bus/usb,type=bind"
{
// make the cargo cache persistent in a volume
"source": "devcontainer-cargo-cache-${devcontainerId}",
"target": "/usr/local/cargo",
"type": "volume"
},
{
// bind the USB bus
"source": "/dev/bus/usb",
"target": "/dev/bus/usb",
"type": "bind"
}
],
"runArgs": [
// allow access to "character devices"
"--device-cgroup-rule=c 189:* rmw"
]
}