Open
Description
Original issue #214673 described similar behavior as mine.
These vscode-server/bin processes seem to be infinitely spinning up until OOM.
![Screenshot 2024-06-12 at 15 26 00](https://private-user-images.githubusercontent.com/11674155/339149805-37295ae6-9af3-493a-abdd-59d992d09e23.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NDAwMDczOTMsIm5iZiI6MTc0MDAwNzA5MywicGF0aCI6Ii8xMTY3NDE1NS8zMzkxNDk4MDUtMzcyOTVhZTYtOWFmMy00OTNhLWFiZGQtNTlkOTkyZDA5ZTIzLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE5VDIzMTgxM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWQ1MjRjOTZjZjIyYzM2YTc0NWYwY2QzYjJiMDQzZWIxZTUyZjRkZGQwNDY4ZWUzY2JhMGRiYTQyZmJhZjA4YTkmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.03-UYX_t9Z9FcNdez1yNZ1t81KnGKLfOYoNLCBuAaDY)
Originally posted by @mliudev in microsoft/vscode#214673 (comment)
devcontainer.json
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "Node.js & TypeScript",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:20",
"runArgs": ["--network=host"],
"postCreateCommand": "git config --global --add safe.directory /workspaces/Playground",
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"ionutvmi.path-autocomplete",
"github.vscode-github-actions",
"ms-azuretools.vscode-docker",
"clinyong.vscode-css-modules",
"eamodio.gitlens"
],
"settings": {
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescriptreact.preferGoToSourceDefinition": true,
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"remote.localPortHost": "allInterfaces",
"cssModules.pathAlias": {
"@/common": "${workspaceFolder}/src/common",
"@/app/(app)": "${workspaceFolder}/src/app"
},
"search.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
".next": true,
"node_modules": true
}
}
}
},
"features": {
"ghcr.io/devcontainers-contrib/features/firebase-cli:2": {}
}
}