mirror of
https://github.com/dimalo/klipper-web-control-docker.git
synced 2026-01-20 22:22:22 +01:00
25 lines
678 B
JSON
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
|
|
}
|
|
}
|
|
]
|
|
} |