From a5bc0c58c593721b2b1ae2b818d569a498bfe1e7 Mon Sep 17 00:00:00 2001 From: Mathias Brodala Date: Wed, 3 Apr 2024 13:47:52 +0200 Subject: [PATCH] [TASK] Use embedded Docker Compose (2.x) --- .github/workflows/ci.yml | 6 +++--- README.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a07cd129..8d6d4108 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,11 +40,11 @@ jobs: COMPOSER_VERSION: ${{matrix.composer}} PHP_VERSION: ${{matrix.php}} TYPO3_VERSION: ${{matrix.typo3}} - run: docker-compose run --rm app composer build + run: docker compose run --rm app composer build - name: Cleanup if: ${{ always() }} - run: docker-compose down --volumes + run: docker compose down --volumes release-ter: name: TYPO3 TER release @@ -63,4 +63,4 @@ jobs: TYPO3_API_USERNAME: ${{secrets.TYPO3_API_USERNAME}} TYPO3_API_PASSWORD: ${{secrets.TYPO3_API_PASSWORD}} TAG: ${{github.ref_name}} - run: docker-compose run --rm app composer deploy:ter + run: docker compose run --rm app composer deploy:ter diff --git a/README.md b/README.md index 5ffdc74b..fdb7b901 100644 --- a/README.md +++ b/README.md @@ -19,4 +19,4 @@ This extension is installable from various sources: All tests can be executed with the shipped Docker Compose definition: - docker-compose run --rm app composer build + docker compose run --rm app composer build