mirror of
https://github.com/XFox111/my-website.git
synced 2026-07-02 19:52:45 +03:00
e4638ec833
Bumps the all group with 1 update: ghcr.io/devcontainers/features/docker-in-docker. Updates `ghcr.io/devcontainers/features/docker-in-docker` from 2.17.0 to 3.0.1 --- updated-dependencies: - dependency-name: ghcr.io/devcontainers/features/docker-in-docker dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
38 lines
953 B
JSON
38 lines
953 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": "my-website",
|
|
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
|
|
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/docker-in-docker:3": {
|
|
"installDockerBuildx": true,
|
|
"version": "latest",
|
|
"dockerDashComposeVersion": "v2"
|
|
},
|
|
"ghcr.io/devcontainers/features/node:2": {
|
|
"version": "latest",
|
|
"pnpmVersion": "none",
|
|
"nvmVersion": "latest"
|
|
}
|
|
},
|
|
|
|
"postCreateCommand": "npm install",
|
|
|
|
// Configure tool-specific properties.
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"bierner.github-markdown-preview",
|
|
"dbaeumer.vscode-eslint",
|
|
"github.vscode-github-actions",
|
|
"Gruntfuggly.todo-tree",
|
|
"jock.svg",
|
|
"mrmlnc.vscode-scss",
|
|
"ms-azuretools.vscode-docker",
|
|
"saeris.markdown-github-alerts"
|
|
]
|
|
}
|
|
}
|
|
}
|