Skip to content

Commit 062c40f

Browse files
committed
fix: docker problems
1 parent 44e8d11 commit 062c40f

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/integration-c.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
- uses: actions/checkout@v4
88

99
- name: Run tests
10-
run: docker-compose run integration_c
10+
run: docker compose run integration_c
1111

1212
- name: Cleanup
1313
if: always()
14-
run: docker-compose down
14+
run: docker compose down

.github/workflows/integration-csharp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
- uses: actions/checkout@v4
88

99
- name: Run tests
10-
run: docker-compose run integration_csharp
10+
run: docker compose run integration_csharp
1111

1212
- name: Cleanup
1313
if: always()
14-
run: docker-compose down
14+
run: docker compose down

.github/workflows/integration-go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
- uses: actions/checkout@v4
88

99
- name: Run tests
10-
run: docker-compose run integration_golang
10+
run: docker compose run integration_golang
1111

1212
- name: Cleanup
1313
if: always()
14-
run: docker-compose down
14+
run: docker compose down

.github/workflows/integration-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
- uses: actions/checkout@v4
88

99
- name: Run tests
10-
run: docker-compose run integration_node
10+
run: docker compose run integration_node
1111

1212
- name: Cleanup
1313
if: always()
14-
run: docker-compose down
14+
run: docker compose down

.github/workflows/integration-php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
- uses: actions/checkout@v4
88

99
- name: Run tests
10-
run: docker-compose run integration_php
10+
run: docker compose run integration_php
1111

1212
- name: Cleanup
1313
if: always()
14-
run: docker-compose down
14+
run: docker compose down

.github/workflows/integration-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
- uses: actions/checkout@v4
88

99
- name: Run tests
10-
run: docker-compose run integration_python
10+
run: docker compose run integration_python
1111

1212
- name: Cleanup
1313
if: always()
14-
run: docker-compose down
14+
run: docker compose down

.github/workflows/integration-shell.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
- uses: actions/checkout@v4
88

99
- name: Run tests
10-
run: docker-compose run integration_shell
10+
run: docker compose run integration_shell
1111

1212
- name: Cleanup
1313
if: always()
14-
run: docker-compose down
14+
run: docker compose down

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
- HTTPS_KEY_FILE=/https-cert/httpbin.org-key.pem
2323
networks:
2424
default:
25-
# on the docker-compose network, this proxy will be aliased as
25+
# on the `docker compose` network, this proxy will be aliased as
2626
# httpbin.org. To make this work with HTTPS, each integration test
2727
# container needs to install the root CA contained in
2828
# ./integrations/https-cert/rootCA.pem

0 commit comments

Comments
 (0)