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
35 lines (32 loc) · 1.08 KB
/
devcontainer.json
File metadata and controls
35 lines (32 loc) · 1.08 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
// 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",
"notskm.clang-tidy",
"mjohns.clang-format",
"timonwong.shellcheck"
]
}
},
"mounts": [
// Local volume to store bash history across rebuilds
"source=infinisim-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 "ubuntu"
"remoteUser": "ubuntu"
// This might be needed when you do not have a local user called ubuntu but your dev container implementation
// tries to find it in the local /etc/passwd and fails to build your container.
// The default is true.
//,"updateRemoteUserUID": false
}