2020-08-11 20:40:09 +00:00
|
|
|
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
|
2021-09-17 01:34:12 +00:00
|
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/rust
|
2019-05-01 13:00:29 -07:00
|
|
|
{
|
2020-04-09 01:07:08 +00:00
|
|
|
"name": "Rust Sample",
|
2020-08-11 20:40:09 +00:00
|
|
|
"build": {
|
2021-09-17 01:34:12 +00:00
|
|
|
"dockerfile": "Dockerfile",
|
|
|
|
|
"args": {
|
|
|
|
|
// Use the VARIANT arg to pick a Debian OS version: buster, bullseye
|
|
|
|
|
// Use bullseye when on local on arm64/Apple Silicon.
|
|
|
|
|
"VARIANT": "bullseye"
|
|
|
|
|
}
|
2020-08-11 20:40:09 +00:00
|
|
|
},
|
2019-12-11 20:50:33 +00:00
|
|
|
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
|
2022-05-17 12:42:11 -07:00
|
|
|
|
|
|
|
|
// Configure tool-specific properties.
|
|
|
|
|
"customizations": {
|
|
|
|
|
// Configure properties specific to VS Code.
|
|
|
|
|
"vscode": {
|
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
|
|
|
|
"settings": {
|
|
|
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
|
|
|
// VS Code don't watch files under ./target
|
|
|
|
|
"files.watcherExclude": {
|
|
|
|
|
"**/target/**": true
|
|
|
|
|
},
|
|
|
|
|
"rust-analyzer.checkOnSave.command": "clippy"
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
|
|
|
|
"extensions": [
|
|
|
|
|
"vadimcn.vscode-lldb",
|
|
|
|
|
"mutantdino.resourcemonitor",
|
|
|
|
|
"matklad.rust-analyzer",
|
|
|
|
|
"tamasfe.even-better-toml",
|
|
|
|
|
"serayuzgur.crates"
|
|
|
|
|
]
|
|
|
|
|
}
|
2019-08-26 14:02:30 -07:00
|
|
|
},
|
|
|
|
|
|
2020-04-09 01:07:08 +00:00
|
|
|
// 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",
|
|
|
|
|
|
2020-08-11 20:40:09 +00:00
|
|
|
// Comment out to run as root instead.
|
2020-04-09 01:07:08 +00:00
|
|
|
"remoteUser": "vscode"
|
2020-07-01 08:10:19 -04:00
|
|
|
}
|