generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.devcontainer.json
32 lines (32 loc) · 1.16 KB
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye",
"name": "Devcontainer Features",
"customizations": {
"vscode": {
"settings": {
"json.schemas": [
{
"fileMatch": [
"*/devcontainer-feature.json"
],
"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainerFeature.schema.json"
}
]
},
"extensions": [
"mads-hartmann.bash-ide-vscode",
"yzhang.markdown-all-in-one",
"github.vscode-github-actions",
"GitHub.copilot",
"foxundermoon.shell-format"
]
}
},
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/joshuanianji/devcontainer-features/github-cli-persistence:1": {}
},
"updateContentCommand": "npm install -g @devcontainers/cli"
}