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.
falk-werner_webfuse/.devcontainer/devcontainer.json

23 lines
587 B

{
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"capAdd": "SYS_ADMIN",
"runArgs":["--device", "/dev/fuse"],
"mounts": [{"source": "${localEnv:HOME}/.ssh", "target": "/home/user/.ssh", "type": "bind"}],
"remoteUser": "user",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools-extension-pack",
"ms-vscode.cmake-tools"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash"
}
}
}
}