mirror of
https://github.com/zenstackhq/zenstack
synced 2026-05-24 10:08:55 +00:00
20 lines
765 B
JSON
20 lines
765 B
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:1-22-bookworm",
|
||
|
|
"features": {
|
||
|
|
"ghcr.io/devcontainers/features/git-lfs:1": {
|
||
|
|
"autoPull": true,
|
||
|
|
"version": "latest"
|
||
|
|
},
|
||
|
|
"ghcr.io/itsmechlark/features/postgresql:1": {
|
||
|
|
"version": "latest"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
||
|
|
"postCreateCommand": "pnpm install"
|
||
|
|
}
|