From a22802b8a79208d252da06fc019593b1bb8fd807 Mon Sep 17 00:00:00 2001 From: Daniel <790119+DanTheMan827@users.noreply.github.com> Date: Sun, 8 Mar 2026 01:47:06 +0000 Subject: [PATCH] chore(devcontainer): update postCreateCommand and remove unused mounts - Changed core.editor configuration to local scope and added commit.gpgsign setting - Combined npm and bun install commands into postCreateCommand - Removed unused mounts for .gnupg and .ssh --- .devcontainer/devcontainer.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3b9eb12..ca4f59a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,8 +4,7 @@ "context": "..", "dockerfile": "./Dockerfile" }, - "postCreateCommand": "git config --global core.editor \"code --wait\"", - "postStartCommand": "npm install && bun install", + "postCreateCommand": "git config --local core.editor \"code --wait\" && git config --local commit.gpgsign false && npm install && bun install", "customizations": { "vscode": { "extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] @@ -13,7 +12,5 @@ }, "mounts": [ "source=${env:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached", - "source=${env:HOME}/.gnupg,target=/home/vscode/.gnupg,type=bind", - "source=${env:HOME}/.ssh,target=/home/vscode/.ssh,type=bind" ] }