diff options
author | saturneric <[email protected]> | 2024-08-12 12:39:33 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-08-12 12:39:33 +0000 |
commit | d4e5db7a75f800fd962d342e894290094c250a8b (patch) | |
tree | cf404c6cb3db2164b15cc367c298c425e51c818a /.devcontainer | |
parent | fix: desktop-lite set vnc and web ports (diff) | |
download | GpgFrontend-d4e5db7a75f800fd962d342e894290094c250a8b.tar.gz GpgFrontend-d4e5db7a75f800fd962d342e894290094c250a8b.zip |
fix: make post adjustments
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/devcontainer.json | 25 |
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"] } |