Skip to content

Commit

Permalink
Change docker-compose command
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Cohen Arazi <[email protected]>
  • Loading branch information
tomascohen committed Sep 5, 2024
1 parent 992656a commit 86938c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,15 @@ jobs:
mkdir -p env
wget -O env/defaults.env https://gitlab.com/koha-community/koha-testing-docker/raw/main/env/defaults.env
cp env/defaults.env .env
docker-compose pull
docker compose pull
# - name: Setup Debug Session
# uses: csexton/debugger-action@master

- name: Run tests
run: |
pwd
ls -alh
docker-compose -f docker-compose.yml -p koha up --detach
docker compose -f docker-compose.yml -p koha up --detach
cd ..
pwd
ls -alh
Expand All @@ -118,7 +118,7 @@ jobs:
- name: Post test cleanup
run: |
docker-compose down
docker compose down
docker rm -f $(docker ps -a -f "name=koha_" -q)
docker volume prune -f
docker image prune -f
Expand Down

0 comments on commit 86938c5

Please sign in to comment.