Skip to content

Commit

Permalink
[TASK] Use "docker compose"
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrodala committed Aug 1, 2024
1 parent 46249fd commit 98e1a2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
env:
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
Expand All @@ -56,4 +56,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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ The _Table garbage collection_ Scheduler task can be set up to automatically del

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

## Thanks

Expand Down

0 comments on commit 98e1a2b

Please sign in to comment.