-
Notifications
You must be signed in to change notification settings - Fork 497
Expand file tree
/
Copy pathdevcontainer.json
More file actions
24 lines (24 loc) · 866 Bytes
/
devcontainer.json
File metadata and controls
24 lines (24 loc) · 866 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
{
"name": "linux development environment for libcyphal",
"image": "ghcr.io/opencyphal/toolshed:ts24.4.3",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools-extension-pack",
"streetsidesoftware.code-spell-checker",
"xaver.clang-format",
"vadimcn.vscode-lldb",
"matepek.vscode-catch2-test-adapter",
"ms-vscode.live-server",
"bierner.markdown-preview-github-styles",
"bierner.markdown-emoji"
]
}
},
"workspaceFolder": "/repo",
"workspaceMount": "source=${localWorkspaceFolder},target=/repo,type=bind,consistency=delegated",
"mounts": [
"source=profile-libcyphal,target=/root,type=volume",
"target=/root/.vscode-server,type=volume"
]
}