From 5a3f1478c8d79e2b40d2958a494eeaf6c1f6c2f6 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 26 Mar 2025 14:21:27 +0000 Subject: [PATCH] ensure ssh keys are mounted across --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index df00ff3..797f152 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,7 +5,8 @@ "remoteUser": "vscode", "postStartCommand": "bash .devcontainer/post-install.sh", "mounts": [ - "source=${localEnv:HOME},target=/workspaces/home,type=bind" + "source=${localEnv:HOME},target=/workspaces/home,type=bind", + "source=${localEnv:HOME}/.ssh,target=/home/vscode/.ssh,type=bind" ], "customizations": { "vscode": {