This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-client-csharp.git
The following commit(s) were added to refs/heads/main by this push:
new 8d9cc80 Use docker compose v2 (#11)
8d9cc80 is described below
commit 8d9cc8001633eefa68e7fbcdf0ac6749b26e7c73
Author: Haonan <[email protected]>
AuthorDate: Sun Aug 4 22:48:48 2024 +0800
Use docker compose v2 (#11)
---
.github/workflows/e2e.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 6753b6b..b8bf1e4 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -18,8 +18,8 @@ jobs:
- name: Set Docker & Run Test
run: |
- docker network create --subnet 172.18.0.0/24 iotdb-network &&
docker-compose -f docker-compose.yml up --build --abort-on-container-exit
--remove-orphans
+ docker network create --subnet 172.18.0.0/24 iotdb-network && docker
compose -f docker-compose.yml up --build --abort-on-container-exit
--remove-orphans
- name: Clean IoTDB & Shut Down Docker
run: |
- docker-compose -f docker-compose.yml down
+ docker compose -f docker-compose.yml down