diff options
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": [ |