Files
rust/.devcontainer/devcontainer.json

27 lines
791 B
JSON
Raw Normal View History

2019-05-01 13:00:29 -07:00
{
2020-04-09 01:07:08 +00:00
"name": "Rust Sample",
2019-05-01 13:00:29 -07:00
"dockerFile": "Dockerfile",
2019-12-11 20:50:33 +00:00
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
2019-08-26 14:02:30 -07:00
2020-04-09 01:07:08 +00:00
// Set *default* container specific settings.json values on container create.
2019-08-26 14:02:30 -07:00
"settings": {
2019-12-11 20:50:33 +00:00
"terminal.integrated.shell.linux": "/bin/bash",
"lldb.executable": "/usr/bin/lldb"
2019-08-26 14:02:30 -07:00
},
2020-04-09 01:07:08 +00:00
// Add the IDs of extensions you want installed when the container is created.
2019-08-26 14:02:30 -07:00
"extensions": [
"rust-lang.rust",
"bungcip.better-toml",
"vadimcn.vscode-lldb"
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",
// Comment out to run as root instead
"remoteUser": "vscode"
2019-05-01 13:00:29 -07:00
}