From 4c8a699c4b2875d17d6b1c8e7264af5c6b276b5e Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sun, 14 Dec 2025 08:45:15 +0000 Subject: [PATCH] fix: update task label and command for building and running local Docker image --- .vscode/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 0cacbd39..50569b3a 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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": {