forked from InfiniTimeOrg/InfiniSim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (29 loc) · 882 Bytes
/
devcontainer.json
File metadata and controls
32 lines (29 loc) · 882 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
// For format details, see https://aka.ms/devcontainer.json.
{
"name": "InfiniSim Dev Container",
"build": {
"dockerfile": "Dockerfile"
},
// Configure tool-specific properties.
"customizations": {
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"marus25.cortex-debug",
"notskm.clang-tidy",
"mjohns.clang-format",
"timonwong.shellcheck"
]
}
},
"mounts": [
// Local volume to store bash history across rebuilds
"source=projectname-bashhistory,target=/commandhistory,type=volume"
// Uncomment and modify path to mount external InfiniTime source into the container
//,"source=/home/example/git/InfiniTime,target=/workspaces/InfiniTime,type=bind,consistency=cached"
],
// Sudo password "it"
"remoteUser": "infinitime"
}