devcontainer optimization
This commit is contained in:
parent
8e424b675e
commit
23cf62e01f
1 changed files with 46 additions and 42 deletions
|
@ -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"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue