kv-music/.devcontainer/devcontainer.json
Daniel a22802b8a7 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
2026-03-08 01:47:06 +00:00

16 lines
500 B
JSON

{
"name": "Monochrome Dev Container",
"build": {
"context": "..",
"dockerfile": "./Dockerfile"
},
"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"]
}
},
"mounts": [
"source=${env:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached",
]
}