Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 464 Bytes

ssh-server-installed.md

File metadata and controls

11 lines (10 loc) · 464 Bytes

The codespace you connect to must be running an SSH server. The default dev container image includes an SSH server, which is started automatically. If your codespaces are not created from the default image, you can install and start an SSH server by adding the following to the features object in your devcontainer.json file.

"features": {
    // ...
    "ghcr.io/devcontainers/features/sshd:1": {
        "version": "latest"
    },
    // ...
}