mirror of
https://github.com/falk-werner/webfuse
synced 2026-03-02 03:40:24 +00:00
build and develop using docker
- 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>
This commit is contained in:
23
.devcontainer/devcontainer.json
Normal file
23
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user