Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Use embedded Docker Compose (2.x) #155

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading