Remove renovate workflow and integrate docker build #10

Merged
official-Cromatin merged 7 commits from feat-vscode-tasks into main 2025-12-08 14:44:05 +01:00
Showing only changes of commit 6967fa5358 - Show all commits
+21
View File
@@ -10,6 +10,27 @@
"dockerfile": "${workspaceFolder}/Dockerfile",
"tag": "post-it:dev"
}
},
{
"label": "Run post-it (interactive, show logs)",
"type": "shell",
"dependsOn": ["Docker: Build Image"],
"command": "docker",
"args": [
"run",
"--rm",
"-it",
"--name",
"post-it-dev",
"-v",
"${workspaceFolder}/config:/app/config",
"post-it:dev"
],
"presentation": {
"reveal": "always",
"panel": "shared"
},
"problemMatcher": []
}
]
}