From bc1d056558964f85bafef7a591b684e182d041af Mon Sep 17 00:00:00 2001 From: xiao Date: Sat, 23 May 2026 20:59:01 +0800 Subject: [PATCH] Add Mounts SSH Key --- .devcontainer/devcontainer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 11babe27e..5a3746955 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -23,6 +23,12 @@ "source": "${localEnv:HOME}/.local/share/opencode/auth.json", "target": "/root/.local/share/opencode/auth.json", "type": "bind" + }, + // 挂载 SSH 密钥 + { + "source": "${localEnv:HOME}/.ssh", + "target": "/root/.ssh", + "type": "bind" } ], "customizations": {