kv-music/.devcontainer/devcontainer.json
2026-03-08 11:52:44 +00:00

14 lines
524 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"]
}