devcontainer.json967 BView on GitHub // For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates
{
"name": "0.email Dev Container",
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",
// The optional 'workspaceFolder' property is the path VS Code should open by default when
// connected to the dev container
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
// Features to add to the dev container
"features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [],
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": ["eamodio.gitlens", "streetsidesoftware.code-spell-checker"],
"settings": {}
}
},
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "apt update && apt install -y zsh && zsh"
}