From 84fec02ea517e8d213d4726ba3206129866260b4 Mon Sep 17 00:00:00 2001 From: Timothy Stewart Date: Thu, 20 Feb 2025 13:46:04 -0600 Subject: [PATCH] fix(devcontainer): Map local ssh keys to container --- .devcontainer/devcontainer.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e96e24b..571b10d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,5 +6,9 @@ // Should match what is defined in ui/package.json "version": "21.1.0" } - } + }, + "mounts": [ + "source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind,consistency=cached" + ] } +