bluepill-rust-blinky/.devcontainer/devcontainer.json

50 lines
1.8 KiB
JSON
Raw Normal View History

2024-02-27 22:55:50 +00:00
// 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
{
2024-03-13 22:09:07 +00:00
"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",
// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers-contrib/features/apt-get-packages:1": {
"packages": "git-flow, openocd, gdb-multiarch"
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "rustc --version",
"postCreateCommand": "rustup target install thumbv7m-none-eabi",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
},
"extensions": [
"marus25.cortex-debug",
"mhutchie.git-graph"
]
}
},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
"mounts": [
{
// 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"
]
2024-02-27 22:55:50 +00:00
}