From 9cf68222aee18596cc2fb93ae3a9fe863a3ba6fb Mon Sep 17 00:00:00 2001 From: Aashwin Mohan <96258159+aashwin-rvvup@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:43:53 +0100 Subject: [PATCH] Use docker compose instead of deprecated docker-compose (#60) --- .github/workflows/e2e.yaml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 8ad09ff..3be8511 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -59,7 +59,7 @@ jobs: if: always() run: | mkdir -p logs/magento - docker-compose logs > logs/container_logs.log + docker compose logs > logs/container_logs.log docker cp magento-hyva-checkout-magento-1:/bitnami/magento/var/log logs/magento - uses: actions/upload-artifact@v4 if: always() diff --git a/README.md b/README.md index 137ce42..3587a2b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ If you would like to have a quick local installation of the plugin on a magento - Copy .env.sample to .env and update the values as needed. - Run the following command to start the docker containers: ``` -docker-compose up -d --build +docker compose up -d --build ``` ## End to End Testing This plugin comes with Playwright tests to ensure it's functionality.