You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
751 B
21 lines
751 B
{ |
|
"name": "ZMK Development", |
|
"dockerFile": "Dockerfile", |
|
"runArgs": ["--security-opt", "label=disable"], |
|
"containerEnv": { |
|
"WORKSPACE_DIR": "${containerWorkspaceFolder}", |
|
"PROMPT_COMMAND": "history -a" |
|
}, |
|
"mounts": [ |
|
"type=volume,source=zmk-root-user,target=/root", |
|
"type=volume,source=zmk-config,target=/workspaces/zmk-config", |
|
"type=volume,source=zmk-zephyr,target=${containerWorkspaceFolder}/zephyr", |
|
"type=volume,source=zmk-zephyr-modules,target=${containerWorkspaceFolder}/modules", |
|
"type=volume,source=zmk-zephyr-tools,target=${containerWorkspaceFolder}/tools" |
|
], |
|
"extensions": ["ms-vscode.cpptools"], |
|
"settings": { |
|
"terminal.integrated.shell.linux": "/bin/bash" |
|
}, |
|
"forwardPorts": [3000] |
|
}
|
|
|