From 80ac1f927a0f893d9ffd63a2d7b8f2325cc069e1 Mon Sep 17 00:00:00 2001 From: Oguzhan Unlu Date: Fri, 11 Oct 2024 12:39:02 +0300 Subject: [PATCH] Fix CI action --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e89a2a0..764f402 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,11 @@ integration-reset: integration-down integration-up integration-up: - (cd integration && docker-compose -f ./docker-compose.yml up -d) + (cd integration && docker compose -f ./docker-compose.yml up -d) sleep 5 integration-down: - (cd integration && docker-compose -f ./docker-compose.yml down) + (cd integration && docker compose -f ./docker-compose.yml down) rm -rf integration/.localstack integration: integration-up