diff options
author | kyori19 <kyori@accelf.net> | 2023-01-05 21:32:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-05 13:32:59 +0100 |
commit | b3ab0014e669e25b984dc7e769a2d1e6d2736ef0 (patch) | |
tree | 6f722db9b5aa19fd6b2b0f8244955bf3c2be6fcb /.devcontainer | |
parent | d68c12648c2d11d4f172e740a2d9067a38f8faca (diff) |
Install SSH server into devcontainer image (#22679)
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/devcontainer.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 01941a9d3..b98f6a21e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -15,6 +15,12 @@ "webben.browserslist" ], + "features": { + "ghcr.io/devcontainers/features/sshd:1": { + "version": "latest" + } + }, + // Use 'forwardPorts' to make a list of ports inside the container available locally. // This can be used to network with other containers or the host. "forwardPorts": [3000, 4000], |