devcontainer optimization
This commit is contained in:
parent
8e424b675e
commit
23cf62e01f
1 changed files with 46 additions and 42 deletions
|
@ -1,46 +1,50 @@
|
||||||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
||||||
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
|
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
|
||||||
{
|
{
|
||||||
"name": "Rust",
|
"name": "Rust",
|
||||||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
||||||
"image": "mcr.microsoft.com/devcontainers/rust:1-1-bookworm",
|
"image": "mcr.microsoft.com/devcontainers/rust:1-1-bookworm",
|
||||||
// Use 'mounts' to make the cargo cache persistent in a Docker Volume.
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
||||||
// "mounts": [
|
"features": {
|
||||||
// {
|
"ghcr.io/devcontainers-contrib/features/apt-get-packages:1": {
|
||||||
// "source": "devcontainer-cargo-cache-${devcontainerId}",
|
"packages": "git-flow, openocd, gdb-multiarch"
|
||||||
// "target": "/usr/local/cargo",
|
}
|
||||||
// "type": "volume"
|
},
|
||||||
// }
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
// ]
|
// "forwardPorts": [],
|
||||||
// Features to add to the dev container. More info: https://containers.dev/features.
|
// Use 'postCreateCommand' to run commands after the container is created.
|
||||||
"features": {
|
// "postCreateCommand": "rustc --version",
|
||||||
"ghcr.io/devcontainers-contrib/features/apt-get-packages:1": {
|
"postCreateCommand": "rustup target install thumbv7m-none-eabi",
|
||||||
"packages": "git-flow, openocd, gdb-multiarch"
|
// Configure tool-specific properties.
|
||||||
}
|
"customizations": {
|
||||||
},
|
"vscode": {
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
"settings": {
|
||||||
// "forwardPorts": [],
|
"terminal.integrated.defaultProfile.linux": "zsh"
|
||||||
// Use 'postCreateCommand' to run commands after the container is created.
|
},
|
||||||
// "postCreateCommand": "rustc --version",
|
"extensions": [
|
||||||
"postCreateCommand": "rustup target install thumbv7m-none-eabi",
|
"marus25.cortex-debug",
|
||||||
// Configure tool-specific properties.
|
"mhutchie.git-graph"
|
||||||
"customizations": {
|
]
|
||||||
"vscode": {
|
}
|
||||||
"settings": {
|
},
|
||||||
"terminal.integrated.defaultProfile.linux": "zsh"
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
||||||
},
|
// "remoteUser": "root"
|
||||||
"extensions": [
|
"mounts": [
|
||||||
"marus25.cortex-debug",
|
{
|
||||||
"mhutchie.git-graph"
|
// make the cargo cache persistent in a volume
|
||||||
]
|
"source": "devcontainer-cargo-cache-${devcontainerId}",
|
||||||
}
|
"target": "/usr/local/cargo",
|
||||||
},
|
"type": "volume"
|
||||||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
},
|
||||||
// "remoteUser": "root"
|
{
|
||||||
"runArgs": [
|
// bind the USB bus
|
||||||
"--device-cgroup-rule=c 189:* rmw"
|
"source": "/dev/bus/usb",
|
||||||
],
|
"target": "/dev/bus/usb",
|
||||||
"mounts": [
|
"type": "bind"
|
||||||
"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