Skip to content

Commit

Permalink
use docker compose instead of deprecated docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
shaozi authored Aug 7, 2024
1 parent 3c25589 commit d21340e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: sudo apt-get install -y ldap-utils

- name: Start containers
run: docker-compose -f "docker-compose.yml" up -d
run: docker compose -f "docker-compose.yml" up -d

- name: Wait for LDAP server to become available
uses: nick-fields/retry@v2
Expand All @@ -51,4 +51,4 @@ jobs:

- name: Stop containers
if: always()
run: docker-compose -f "docker-compose.yml" down
run: docker compose -f "docker-compose.yml" down

0 comments on commit d21340e

Please sign in to comment.