This is an automated email from the ASF dual-hosted git repository.

fanningpj pushed a commit to branch 1.0.x
in repository https://gitbox.apache.org/repos/asf/pekko-persistence-r2dbc.git


The following commit(s) were added to refs/heads/1.0.x by this push:
     new 5994769  fix build issues related to docker-compose (#137) (#138)
5994769 is described below

commit 5994769322f27efe42046afb148270e544c48bdc
Author: PJ Fanning <[email protected]>
AuthorDate: Thu Aug 8 12:02:55 2024 +0100

    fix build issues related to docker-compose (#137) (#138)
---
 .github/workflows/build-test.yml         | 4 ++--
 CONTRIBUTING.md                          | 4 ++--
 docs/src/main/paradox/getting-started.md | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 19a643d..6f63c92 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -97,7 +97,7 @@ jobs:
 
       - name: Start DB
         run: |-
-          docker-compose -f docker/docker-compose-postgres.yml up -d
+          docker compose -f docker/docker-compose-postgres.yml up -d
           # TODO: could we poll the port instead of sleep?
           sleep 10
           docker exec -i docker_postgres-db_1 psql -U postgres -t < 
ddl-scripts/create_tables_postgres.sql
@@ -179,7 +179,7 @@ jobs:
 
       - name: Start DB
         run: |-
-          docker-compose -f docker/docker-compose-yugabyte.yml up -d
+          docker compose -f docker/docker-compose-yugabyte.yml up -d
           # TODO: could we poll the port instead of sleep?
           sleep 10
           docker exec -i yb-tserver-n1 /home/yugabyte/bin/ysqlsh -h 
yb-tserver-n1 -t < ddl-scripts/create_tables_yugabyte.sql
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 19bb975..ee24295 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -7,7 +7,7 @@ The tests expect a locally running database.
 It can be started with the docker-compose file in the docker folder:
 
 ```
-docker-compose -f docker/docker-compose-postgres.yml up
+docker compose -f docker/docker-compose-postgres.yml up
 ```
 
 ```
@@ -52,7 +52,7 @@ The tests expect a locally running database.
 It can be started with the docker-comopse file in the docker folder:
 
 ```
-docker-compose -f docker/docker-compose-yugabyte.yml up
+docker compose -f docker/docker-compose-yugabyte.yml up
 ```
 
 ```
diff --git a/docs/src/main/paradox/getting-started.md 
b/docs/src/main/paradox/getting-started.md
index 64d0d09..75ed042 100644
--- a/docs/src/main/paradox/getting-started.md
+++ b/docs/src/main/paradox/getting-started.md
@@ -45,12 +45,12 @@ Start with:
 
 Postgres:
 : ```
-docker-compose -f docker/docker-compose-postgres.yml up
+docker compose -f docker/docker-compose-postgres.yml up
 ```
 
 Yugabyte:
 : ```
-docker-compose -f docker/docker-compose-yugabyte.yml up
+docker compose -f docker/docker-compose-yugabyte.yml up
 ```
 
 <a id="schema"></a>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to