devcontainer configuration

This commit is contained in:
enforcer007
2023-02-08 22:20:48 +05:30
parent ae8956eaeb
commit 45c66060e5
3 changed files with 53 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
"name": "rustdesk",
"build": {
"dockerfile": "Dockerfile",
"args": {
"BUILDKIT_INLINE_CACHE": "0"
}
},
"workspaceMount": "source=${localWorkspaceFolder},target=/home/user/rustdesk,type=bind,consistency=cache",
"workspaceFolder": "/home/user/rustdesk",
"postStartCommand": "./entrypoint",
"remoteUser": "user",
"customizations": {
"vscode": {
"extensions": [
"vadimcn.vscode-lldb",
"mutantdino.resourcemonitor",
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"serayuzgur.crates"
],
"settings": {
"files.watcherExclude": {
"**/target/**": true
}
}
}
}
}