diff options
author | saturneric <[email protected]> | 2024-08-12 12:21:41 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-08-12 12:21:41 +0000 |
commit | efe232771838eba5ca7c0468c9f5b735b6c4e8ce (patch) | |
tree | d761597bc810e1f57706cb0da6a799dbf57f25b6 /.devcontainer | |
parent | feat: setup vnc support and post-create.sh (diff) | |
download | GpgFrontend-efe232771838eba5ca7c0468c9f5b735b6c4e8ce.tar.gz GpgFrontend-efe232771838eba5ca7c0468c9f5b735b6c4e8ce.zip |
fix: desktop-lite set vnc and web ports
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/devcontainer.json | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 372e62af..069d137e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -13,14 +13,21 @@ "features": { "ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {}, "ghcr.io/nils-geistmann/devcontainers-features/zsh:0": {}, - "ghcr.io/devcontainers/features/desktop-lite:1": {} + "ghcr.io/devcontainers/features/desktop-lite:1": { + "password": "vscode", + "webPort": "6080", + "vncPort": "5901" + } }, - "forwardPorts": [6080], + "forwardPorts": [6080, 5901], "portsAttributes": { - "6080": { - "label": "desktop" - } - }, + "5901": { + "label": "VNC" + }, + "6080": { + "label": "Web VNC" + } + }, "customizations": { "vscode": { "extensions": [ |