Public Access
1
0

fix: update docker commands to use 'docker compose' syntax

This commit is contained in:
2025-08-11 11:17:51 -04:00
parent 103080ba1b
commit 4e59fc30b8

4
.vscode/tasks.json vendored
View File

@@ -4,7 +4,7 @@
{ {
"label": "docker-compose-up", "label": "docker-compose-up",
"type": "shell", "type": "shell",
"command": "docker-compose up --build", "command": "docker compose up --build",
"isBackground": true, "isBackground": true,
"problemMatcher": [ "problemMatcher": [
{ {
@@ -27,7 +27,7 @@
{ {
"label": "docker-compose-down", "label": "docker-compose-down",
"type": "shell", "type": "shell",
"command": "docker-compose down" "command": "docker compose down"
} }
] ]
} }