-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
47 lines (47 loc) · 1.45 KB
/
.devcontainer.json
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
46
47
{
"name": "EmbeddedHipster",
// "dockerFile": "Dockerfile",
"image": "disroop/embedded-hipster-dev:0.6.14",
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"postCreateCommand": "setup && mumoco remotes", //&& source <(inv --print-completion-script bash) Add to bashsrc in docker
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
},
// Comment out the next line if you want to run as root instead
"remoteUser": "dev",
// Add the IDs of extensions you want installed when the container is created in the array below.
"extensions": [
"ms-vscode.cpptools",
"twxs.cmake",
"mhutchie.git-graph",
"joaompinto.asciidoctor-vscode",
"cschlosser.doxdocgen",
"ms-python.python",
"mhutchie.git-graph",
"disroop.conan",
"marus25.cortex-debug",
"formulahendry.code-runner",
"matepek.vscode-catch2-test-adapter",
"wayou.vscode-todo-highlight",
"ms-vscode.cmake-tools",
"anjali.clipboard-history",
"vscode-icons-team.vscode-icons",
"alefragnani.numbered-bookmarks",
"sourcegraph.sourcegraph",
"cschleiden.vscode-github-actions",
"pokowaka.pokowaka-iwyu",
"ms-azuretools.vscode-docker",
"hediet.vscode-drawio",
"tomoki1207.pdf",
"gruntfuggly.todo-tree",
"llvm-vs-code-extensions.vscode-clangd",
"jacqueslucke.gcov-viewer",
"snyk-security.snyk-vulnerability-scanner"
],
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind",
"workspaceFolder": "/workspace"
}