From 582e3f5a056fc4a363390029743d5dd6967bb768 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Fri, 2 Aug 2024 17:13:30 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(github)=20fix=20e2e=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit An update to ubuntu made the command "docker-compose" not working anymore. This commit fixes the issue. --- .github/workflows/people.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/people.yml b/.github/workflows/people.yml index 2b272ee..2b973e1 100644 --- a/.github/workflows/people.yml +++ b/.github/workflows/people.yml @@ -181,7 +181,7 @@ jobs: DOCKER_BUILDKIT: 1 COMPOSE_DOCKER_CLI_BUILD: 1 run: | - docker-compose build --pull --build-arg BUILDKIT_INLINE_CACHE=1 + docker compose build --pull --build-arg BUILDKIT_INLINE_CACHE=1 make run - name: Apply DRF migrations