Skip to content

Commit

Permalink
Use docker compose plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett Henderson authored and Brett Henderson committed Dec 27, 2024
1 parent ca2669c commit 2e812f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-support/docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ if [ ! -d "${gradleUserDir}" ]; then
fi

# Launch our docker build container interactively and destroy on exit.
runCommand="docker-compose run --rm build"
runCommand="docker compose run --rm build"
if [ $# -eq 0 ]; then
${runCommand} /bin/bash
else
${runCommand} "${@}"
fi

# Remove remaining containers (e.g. db server)
docker-compose down -v
docker compose down -v

0 comments on commit 2e812f6

Please sign in to comment.