mirror of
https://github.com/diamante0018/MonitorRam.git
synced 2026-02-07 22:23:03 +00:00
feat: ultimate dev container
This commit is contained in:
32
.devcontainer/devcontainer.json
Normal file
32
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "MonitorRam Dev Container",
|
||||
"build": {
|
||||
"context": "..",
|
||||
"dockerfile": "./Dockerfile"
|
||||
},
|
||||
"capAdd": [
|
||||
"SYS_PTRACE"
|
||||
],
|
||||
"securityOpt": [
|
||||
"seccomp=unconfined"
|
||||
],
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"ms-vscode.cpptools-extension-pack"
|
||||
],
|
||||
"settings": {
|
||||
"C_Cpp.clang_format_style": "file",
|
||||
"C_Cpp.formatting": "clangFormat",
|
||||
"editor.formatOnSave": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"runArgs": [
|
||||
"--network=host"
|
||||
],
|
||||
"forwardPorts": [
|
||||
3000
|
||||
],
|
||||
"remoteUser": "vscode"
|
||||
}
|
||||
Reference in New Issue
Block a user