aboutsummaryrefslogtreecommitdiffstats
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-08-12 12:39:33 +0000
committersaturneric <[email protected]>2024-08-12 12:39:33 +0000
commitd4e5db7a75f800fd962d342e894290094c250a8b (patch)
treecf404c6cb3db2164b15cc367c298c425e51c818a /.devcontainer/devcontainer.json
parentfix: desktop-lite set vnc and web ports (diff)
downloadGpgFrontend-d4e5db7a75f800fd962d342e894290094c250a8b.tar.gz
GpgFrontend-d4e5db7a75f800fd962d342e894290094c250a8b.zip
fix: make post adjustments
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json25
1 files changed, 10 insertions, 15 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 069d137e..6aded987 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -13,21 +13,14 @@
"features": {
"ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {},
"ghcr.io/nils-geistmann/devcontainers-features/zsh:0": {},
- "ghcr.io/devcontainers/features/desktop-lite:1": {
- "password": "vscode",
- "webPort": "6080",
- "vncPort": "5901"
- }
- },
- "forwardPorts": [6080, 5901],
- "portsAttributes": {
- "5901": {
- "label": "VNC"
- },
- "6080": {
- "label": "Web VNC"
- }
+ "ghcr.io/devcontainers/features/desktop-lite:1": {}
},
+ "forwardPorts": [6080],
+ "portsAttributes": {
+ "6080": {
+ "label": "desktop"
+ }
+ },
"customizations": {
"vscode": {
"extensions": [
@@ -45,8 +38,10 @@
]
},
"settings": {
+ "C_Cpp.intelliSenseEngine": "disabled",
"clangd.path": "/usr/bin/clangd"
}
},
- "postCreateCommand": "bash .devcontainer/post-create.sh"
+ "postCreateCommand": "bash .devcontainer/post-create.sh",
+ "runArgs": ["--shm-size=1g"]
}