Skip to content

Commit

Permalink
fixes: use docker compose command instead of docker-compose (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Commelina authored Apr 3, 2024
1 parent 5ce328d commit c06ce9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/build_kafka.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/bash
docker-compose --file ./docker/docker-compose-kafka.yml \
docker compose --file ./docker/docker-compose-kafka.yml \
--compatibility \
-p jepsen-kafka \
build \
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_legacy.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/bash
docker-compose --file ./docker/docker-compose.yml \
docker compose --file ./docker/docker-compose.yml \
--compatibility \
-p jepsen \
build \
Expand Down
2 changes: 1 addition & 1 deletion scripts/up_kafka.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/bash
docker-compose --file ./docker/docker-compose-kafka.yml \
docker compose --file ./docker/docker-compose-kafka.yml \
--compatibility \
-p jepsen-kafka \
up \
Expand Down
2 changes: 1 addition & 1 deletion scripts/up_legacy.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/bash
docker-compose --file ./docker/docker-compose.yml \
docker compose --file ./docker/docker-compose.yml \
--compatibility \
-p jepsen \
up \
Expand Down

0 comments on commit c06ce9e

Please sign in to comment.