// 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", // Use Docker Compose to define the dev container and Redis service "dockerComposeFile": ["docker-compose.yml"], "service": "dev", "workspaceFolder": "/workspace", "features": { "ghcr.io/guiyomh/features/just:0": { "version": "latest" }, "ghcr.io/devcontainers-extra/features/act-asdf:2": { "version": "latest" }, "ghcr.io/devcontainers-extra/features/redis-homebrew": { "version": "latest" } }, "customizations": { "vscode": { "extensions": ["esbenp.prettier-vscode"] } }, "forwardPorts": [6379] // Use 'postCreateCommand' to run commands after the container is created. // "postCreateCommand": "yarn install", // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" }