Update devcontainer configuration for new setup

This commit is contained in:
edideaur 2026-03-09 21:28:59 +02:00 committed by GitHub
parent e8b15314d2
commit 8b2dfc3b2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,14 +1,22 @@
{
"name": "Monochrome Dev Container",
"name": "debian-npm-fish-devcontainer",
"build": {
"context": "..",
"dockerfile": "./Dockerfile"
"dockerfile": "Dockerfile"
},
"postCreateCommand": "git config --local core.editor \"code --wait\" && git config --local commit.gpgsign false && npm install && bun install",
"remoteUser": "devuser",
"features": {},
"customizations": {
"vscode": {
"extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
}
},
"mounts": ["source=${env:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached"]
"postCreateCommand": "npm install",
"remoteEnv": {
"SHELL": "/usr/bin/fish"
}
}