Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 45b7a63

Browse files
committedAug 7, 2024
Replace docker compose V2 instead V1
1 parent 20fe023 commit 45b7a63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎bin/dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -e
66
while getopts "bustefdp" OPTION; do
77
case $OPTION in
88
b)
9-
docker-compose pull -q && docker-compose build
9+
docker compose pull -q && docker compose build
1010
;;
1111
u)
1212
docker-compose up

‎bin/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
set -x
44
set -e
55

6-
docker-compose run --workdir="/mqdev" --rm dev ./docker/bin/test.sh $@
6+
docker compose run --workdir="/mqdev" --rm dev ./docker/bin/test.sh $@

0 commit comments

Comments
 (0)
Please sign in to comment.