fix: update task label and command for building and running local Docker image

This commit is contained in:
GitHub Actions
2025-12-14 08:45:15 +00:00
parent 114df30186
commit 4c8a699c4b

4
.vscode/tasks.json vendored
View File

@@ -2,9 +2,9 @@
"version": "2.0.0",
"tasks": [
{
"label": "Build: Local Docker Image",
"label": "Build & Run: Local Docker Image",
"type": "shell",
"command": "docker build -t charon:local .",
"command": "docker build -t charon:local . && docker compose -f docker-compose.override.yml up -d && echo 'Charon running at http://localhost:8080'",
"group": "build",
"problemMatcher": [],
"presentation": {