Skip to content

Commit 7e01539

Browse files
authored
chore: docker compose (#588)
1 parent 63e30e3 commit 7e01539

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Start DB
104104
run: |-
105-
docker-compose -f docker/docker-compose-yugabyte.yml up -d
105+
docker compose -f docker/docker-compose-yugabyte.yml up -d
106106
# TODO: could we poll the port instead of sleep?
107107
sleep 10
108108
docker exec -i yb-tserver-n1 /home/yugabyte/bin/ysqlsh -h yb-tserver-n1 -t < ddl-scripts/create_tables_yugabyte.sql

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The tests expect a locally running database.
77
It can be started with the docker-compose file in the docker folder:
88

99
```
10-
docker-compose -f docker/docker-compose-postgres.yml up --wait
10+
docker compose -f docker/docker-compose-postgres.yml up --wait
1111
```
1212

1313
```
@@ -52,7 +52,7 @@ The tests expect a locally running database.
5252
It can be started with the docker-comopse file in the docker folder:
5353

5454
```
55-
docker-compose -f docker/docker-compose-yugabyte.yml up
55+
docker compose -f docker/docker-compose-yugabyte.yml up
5656
```
5757

5858
```

docker/docker-compose-yugabyte.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '2'
1+
version: '2.2'
22

33
# Local Yugabyte database, see https://docs.yugabyte.com/latest/deploy/docker/docker-compose/
44

0 commit comments

Comments
 (0)