Skip to content

Commit

Permalink
Use docker compose command (#2382)
Browse files Browse the repository at this point in the history
replace calls to docker-compose with docker compose
  • Loading branch information
mlsmaycon authored Aug 3, 2024
1 parent 0371f52 commit 059fc7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-infrastructure-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ jobs:
- name: run docker compose up
working-directory: infrastructure_files/artifacts
run: |
docker-compose up -d
docker compose up -d
sleep 5
docker-compose ps
docker-compose logs --tail=20
docker compose ps
docker compose logs --tail=20
- name: test running containers
run: |
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:

- name: Postgres run cleanup
run: |
docker-compose down --volumes --rmi all
docker compose down --volumes --rmi all
rm -rf docker-compose.yml Caddyfile zitadel.env dashboard.env machinekey/zitadel-admin-sa.token turnserver.conf management.json zdb.env
- name: run script with Zitadel CockroachDB
Expand Down

0 comments on commit 059fc7c

Please sign in to comment.