Use docker compose plugin

This commit is contained in:
Brett Henderson
2024-12-27 17:18:25 +11:00
parent ca2669c977
commit a6c7cd166d
2 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ 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
@ -20,4 +20,4 @@ else
fi
# Remove remaining containers (e.g. db server)
docker-compose down -v
docker compose down -v

View File

@ -1,7 +1,7 @@
# Development
The easiest way to perform a full Osmosis build is to use the docker-based
development environment. If you have docker and docker-compose installed,
development environment. If you have docker and docker compose plugin installed,
simply run the following command to build and launch a shell with everything
required to run the full build and test suite.