Skip to content

Commit

Permalink
chore: LDP-2563: Use docker compose instead of docker-compose.
Browse files Browse the repository at this point in the history
  • Loading branch information
Liopold D. Novelli committed Nov 5, 2024
1 parent 7af7c15 commit b807a13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-drupal-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
DOCKER_CONFIG=${DOCKER_CONFIG:-$HOME/.docker}
mkdir -p $DOCKER_CONFIG/cli-plugins
curl -SL https://github.com/docker/compose/releases/download/v2.15.1/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose
curl -SL https://github.com/docker/compose/releases/download/v2.30.1/docker-compose-linux-x86_64 -o $DOCKER_CONFIG/cli-plugins/docker-compose
chmod +x $DOCKER_CONFIG/cli-plugins/docker-compose
docker compose version
- name: Install composer dependencies.
Expand All @@ -47,7 +47,7 @@ jobs:
shell: 'script -q -e -c "bash {0}"'
run: |
export COMPOSE_DEFAULT_USER=$(id -u $USER)
docker-compose up -d
docker compose up -d
echo "Waiting for mysql to come up..." && docker exec -it $(docker compose ps -q cli) /bin/bash -c "while ! echo exit | nc mariadb 3306; do sleep 1; done" >/dev/null
- name: Install the project
shell: 'script -q -e -c "bash {0}"'
Expand Down

0 comments on commit b807a13

Please sign in to comment.