Skip to content

Commit

Permalink
use docker-based docker-compose, to fix a version.
Browse files Browse the repository at this point in the history
  • Loading branch information
drortirosh committed Nov 14, 2023
1 parent c9759f7 commit 077bbc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runbundler/runbundler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ exit 1
#collect envfiles into TMPENV (docker-compose v1.x can get only a single env file..)
TMPENV=/tmp/tmp.env

function docker-compose1 {
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock -v "$PWD:$PWD" -v $TMPENV:$TMPENV -w="$PWD" docker/compose:1.29.2 "$@"
function docker-compose {
docker run -ti --rm -v /var/run/docker.sock:/var/run/docker.sock -v "$PWD:$PWD" -v $TMPENV:$TMPENV -w="$PWD" docker:24-cli compose "$@"
}

file=`realpath $1`
Expand Down

0 comments on commit 077bbc4

Please sign in to comment.