From 4e59fc30b8dfc7424f530dd4c4b9da9b6bfefb25 Mon Sep 17 00:00:00 2001 From: giteaadmin Date: Mon, 11 Aug 2025 11:17:51 -0400 Subject: [PATCH] fix: update docker commands to use 'docker compose' syntax --- .vscode/tasks.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 805d0eb..f89baaa 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ { "label": "docker-compose-up", "type": "shell", - "command": "docker-compose up --build", + "command": "docker compose up --build", "isBackground": true, "problemMatcher": [ { @@ -27,7 +27,7 @@ { "label": "docker-compose-down", "type": "shell", - "command": "docker-compose down" + "command": "docker compose down" } ] }