forked from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdevcontainer.json
More file actions
35 lines (35 loc) · 966 Bytes
/
devcontainer.json
File metadata and controls
35 lines (35 loc) · 966 Bytes
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
33
34
35
{
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-20-bookworm",
"customizations": {
"vscode": {
"settings": {
"files.autoSave": "onFocusChange",
"json.schemas": [
{
"fileMatch": [
"*/devcontainer-feature.json"
],
"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainerFeature.schema.json"
}
]
},
"extensions": [
"mads-hartmann.bash-ide-vscode",
"foxundermoon.shell-format",
"timonwong.shellcheck",
"streetsidesoftware.code-spell-checker",
"editorconfig.editorconfig"
]
}
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"./zsh": {
"theme": "agnoster",
"plugins": "git docker",
"defaultUser": "true"
}
},
"remoteUser": "node",
"updateContentCommand": "npm install -g @devcontainers/cli"
}