-
Notifications
You must be signed in to change notification settings - Fork 392
Expand file tree
/
Copy pathdevcontainer.json
More file actions
45 lines (41 loc) · 1.11 KB
/
devcontainer.json
File metadata and controls
45 lines (41 loc) · 1.11 KB
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
36
37
38
39
40
41
42
43
44
45
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
{
"name": "Dev Containers CLI",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "18-bookworm"
}
},
"mounts": [
// Keep command history across instances
"source=dev-containers-cli-bashhistory,target=/home/node/commandhistory"
],
"postCreateCommand": "yarn install",
"remoteUser": "node",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"GitHub.vscode-pull-request-github"
]
},
"codespaces": {
"repositories": {
"devcontainers/features": {
"permissions": {
"contents": "write",
"workflows": "write"
}
}
}
}
}
}
"ghcr.io/joshuanianji/devcontainer-features/aws-cli-persistence:1": {}