From bd44c41dc11ae7c52444143619af57f02e2aed9a Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Thu, 4 Apr 2024 12:15:11 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A5=20Replace=20docker-compose=20with?= =?UTF-8?q?=20docker=20compose?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-artifact.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-artifact.yml b/.github/workflows/build-artifact.yml index 1a45a22..1178a97 100644 --- a/.github/workflows/build-artifact.yml +++ b/.github/workflows/build-artifact.yml @@ -83,10 +83,10 @@ jobs: run: | if [[ "${{ inputs.CI_TEST }}" =~ ^(true|True|1)$ ]]; then echo "In CI Testing. Using local compose file." - docker-compose -f docker-compose-local.yml up --build + docker compose -f docker-compose-local.yml up --build else echo "Using Prod compose file." - docker-compose up --build + docker compose up --build fi - name: Upload Build APKS uses: actions/upload-artifact@main diff --git a/README.md b/README.md index 6a08ea5..ef37cd9 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ You can use any of the following methods to build. 4. Update `.env` file if you want some customization(See notes) 5. Run script with ```shell - docker-compose up --build + docker compose up --build ``` - 🐳With Docker