Files
klipper-web-control-docker/.vscode/tasks.json
2022-09-23 00:00:21 +02:00

25 lines
678 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Klipper Image",
"type": "shell",
"command": "docker build --pull --rm -f '${workspaceFolder}/klipper/Dockerfile' -t dimalo/klipper-moonraker:next ${workspaceFolder}",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Run Klipper Image",
"type": "shell",
"command": "docker run -it --rm --cap-add SYS_NICE dimalo/klipper-moonraker:next",
"group": {
"kind": "none",
"isDefault": true
}
}
]
}