mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
fdd8dbe51d
- add DevContainer note that integration tests will not run in devcontainer - allow to build using docker buildx bake Signed-off-by: Falk Werner <falk.werner@gmx.net>
23 lines
501 B
JSON
23 lines
501 B
JSON
{
|
|
"name": "webfuse",
|
|
"build": {
|
|
"dockerfile": "../Dockerfile",
|
|
"context": "..",
|
|
"target": "devcontainer"
|
|
},
|
|
"remoteUser": "user",
|
|
"mounts": [{
|
|
"source": "${localEnv:HOME}/.ssh",
|
|
"target": "/home/user/.ssh",
|
|
"type": "bind"
|
|
}],
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [],
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash"
|
|
}
|
|
}
|
|
}
|
|
} |