devcontainers-features/.devcontainer/devcontainer.json

28 lines
947 B
JSON
Raw Permalink Normal View History

2023-09-15 20:25:04 +03:00
{
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye",
"customizations": {
"vscode": {
"settings": {
"json.schemas": [
{
"fileMatch": [
"*/devcontainer-feature.json"
],
"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainerFeature.schema.json"
}
2023-09-18 09:24:09 +03:00
],
"editor.formatOnSave": true
2023-09-15 20:25:04 +03:00
},
"extensions": [
2023-09-18 09:24:09 +03:00
"mads-hartmann.bash-ide-vscode",
"foxundermoon.shell-format"
2023-09-15 20:25:04 +03:00
]
}
},
"features": {
2023-09-18 09:14:22 +03:00
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/lukewiwa/features/shellcheck:0": {}
2023-09-15 20:25:04 +03:00
},
"remoteUser": "node",
"updateContentCommand": "npm install -g @devcontainers/cli"
2023-09-18 09:24:09 +03:00
}