Skip to content

Commit

Permalink
docker-compose => docker compose
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikzogg committed Aug 3, 2024
1 parent 5b1517e commit 4b2a847
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
- name: checkout
uses: actions/checkout@v4
- name: docker build / start
run: docker-compose -f docker-compose.ci.yml up -d
run: docker compose -f docker-compose.ci.yml up -d
- name: wait for nginx
run: while ! nc -z localhost 443; do sleep 0.1; done
- name: ping
run: curl --insecure https://localhost/ping -vvv
- name: openapi
run: curl --insecure https://localhost/openapi -vvv
- name: docker stop
run: docker-compose -f docker-compose.ci.yml stop
run: docker compose -f docker-compose.ci.yml stop
docker:
name: docker (development container)
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 4b2a847

Please # to comment.