kubrick/.devcontainer/devcontainer.json
2024-09-08 13:13:53 +07:00

42 lines
1.3 KiB
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": "syntatis/kubrick",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "ghcr.io/syntatis/php:7.4-cli",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"nodeGypDependencies": true,
"version": "20.11.0",
"nvmVersion": "latest"
}
},
"customizations": {
"vscode": {
"extensions": [
"stylelint.vscode-stylelint",
"meganrogge.template-string-converter",
"jock.svg",
"EditorConfig.EditorConfig",
"dbaeumer.vscode-eslint",
"DavidAnson.vscode-markdownlint",
"ZixuanChen.vitest-explorer"
]
}
}
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}