From 60b7b0a799947cac11aef4516fca35c074083154 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Tue, 10 Sep 2024 11:12:51 -0400 Subject: [PATCH] build: Update the way we startup from compose files. `compose` is now a sub command of `docker` and not a separate utility. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 303b044c..fda01127 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Start container run: | - docker-compose -f .github/docker-compose-ci.yml up -d + docker compose -f .github/docker-compose-ci.yml up -d - name: setup python if: ${{ matrix.python-version == 'py312' }}