From 474ade6f650d45c79468eddc1420deaa6db191af Mon Sep 17 00:00:00 2001 From: d-eigo-hara Date: Mon, 12 Jan 2026 00:16:47 +0900 Subject: [PATCH 1/2] fix: order --- .devcontainer/devcontainer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 05cd088..1638c1f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -13,15 +13,15 @@ "target": "/home/${remoteUser}/.cache", "type": "volume" }, - { - "source": "venv-${devcontainerId}", - "target": "${containerWorkspaceFolder}/.venv", - "type": "volume" - }, { "source": "${localEnv:HOME}/.ssh", "target": "/home/${remoteUser}/.ssh", "type": "bind" + }, + { + "source": "venv-${devcontainerId}", + "target": "${containerWorkspaceFolder}/.venv", + "type": "volume" } ], "features": { From 70c33a9da88b6c8156422744e4c2af3d36bed9cc Mon Sep 17 00:00:00 2001 From: d-eigo-hara Date: Mon, 12 Jan 2026 00:18:18 +0900 Subject: [PATCH 2/2] fix: docs --- docs/configurations/uv.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/configurations/uv.md b/docs/configurations/uv.md index 9d7b3f6..280bd24 100644 --- a/docs/configurations/uv.md +++ b/docs/configurations/uv.md @@ -21,15 +21,15 @@ Set the `UV_PROJECT_ENVIRONMENT` not to create a virtual environment in the proj "target": "/home/${remoteUser}/.cache", "type": "volume" }, - { - "source": "venv-${devcontainerId}", - "target": "${containerWorkspaceFolder}/.venv", - "type": "volume" - }, { "source": "${localEnv:HOME}/.ssh", "target": "/home/${remoteUser}/.ssh", "type": "bind" + }, + { + "source": "venv-${devcontainerId}", + "target": "${containerWorkspaceFolder}/.venv", + "type": "volume" } ], "features": {