Skip to content

Commit

Permalink
fix: docker problems
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion committed Sep 4, 2024
1 parent 44e8d11 commit 062c40f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_c
run: docker compose run integration_c

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_csharp
run: docker compose run integration_csharp

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_golang
run: docker compose run integration_golang

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_node
run: docker compose run integration_node

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_php
run: docker compose run integration_php

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_python
run: docker compose run integration_python

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_shell
run: docker compose run integration_shell

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
- HTTPS_KEY_FILE=/https-cert/httpbin.org-key.pem
networks:
default:
# on the docker-compose network, this proxy will be aliased as
# on the `docker compose` network, this proxy will be aliased as
# httpbin.org. To make this work with HTTPS, each integration test
# container needs to install the root CA contained in
# ./integrations/https-cert/rootCA.pem
Expand Down

0 comments on commit 062c40f

Please sign in to comment.