From 5b9162b00d7163ea7fb3f2970655d539e6f432dc Mon Sep 17 00:00:00 2001 From: Felipe Fernandes Versiane Date: Thu, 22 Aug 2024 23:23:09 -0300 Subject: [PATCH] fix: cicd docker error --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a363cd1..40744b2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v3 - name: Set up Docker Compose - run: docker-compose -f docker-compose.yaml up -d --build --no-cache + run: docker compose -f docker-compose.yaml up -d --build --no-cache - name: Run project run: make ci @@ -45,12 +45,12 @@ jobs: - name: Get Docker Compose status if: failure() - run: docker-compose -f docker-compose.yaml ps + run: docker compose -f docker-compose.yaml ps - name: Get Docker Compose logs if: failure() - run: docker-compose -f docker-compose.yaml logs + run: docker compose -f docker-compose.yaml logs - name: Tear Down if: always() - run: docker-compose -f docker-compose.yaml down \ No newline at end of file + run: docker compose -f docker-compose.yaml down \ No newline at end of file