This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-persistence-r2dbc.git
The following commit(s) were added to refs/heads/main by this push:
new 9e7bd0b fix build issues related to docker-compose (#137)
9e7bd0b is described below
commit 9e7bd0b7d276625515d1f99faa715b6c5ae83c6d
Author: PJ Fanning <[email protected]>
AuthorDate: Wed Aug 7 14:20:26 2024 +0100
fix build issues related to docker-compose (#137)
---
.github/workflows/build-test.yml | 4 ++--
.github/workflows/nightly-tests-pekko1.0.yml | 2 +-
CONTRIBUTING.md | 4 ++--
docs/src/main/paradox/getting-started.md | 4 ++--
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index f4a8649..8e343cf 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -72,7 +72,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
@@ -115,7 +115,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/.github/workflows/nightly-tests-pekko1.0.yml
b/.github/workflows/nightly-tests-pekko1.0.yml
index 6baf6f1..6f88fef 100644
--- a/.github/workflows/nightly-tests-pekko1.0.yml
+++ b/.github/workflows/nightly-tests-pekko1.0.yml
@@ -70,7 +70,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
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 1f64bf7..9b1d7a3 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 7770cde..21bc7a8 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]