From 33537be02c4d14e2dbee8bfd3a8bab930544dd24 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Thu, 16 May 2024 17:36:46 +0100 Subject: [PATCH] WIP: Add SSH config to devcontainer.json This is a test only. To run tests with a codespace, we need to SSH in. This configuration might be necessary to make that work. Not sure how we'd make this work from the research-template-docker repository. --- .devcontainer/devcontainer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2aca111..c672133 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,6 +11,9 @@ "installDockerBuildx": true, "version": "latest", "dockerDashComposeVersion": "v2" + }, + "ghcr.io/devcontainers/features/sshd:1": { + "version": "latest" } }, "postCreateCommand": "/bin/bash .devcontainer/postCreate.sh ${containerWorkspaceFolder}",