Releases: buildkite-plugins/docker-compose-buildkite-plugin
Releases · buildkite-plugins/docker-compose-buildkite-plugin
v1.2.0 (🐧 Penguin)
What’s changed?
- Allow an empty command for
run
to use the command from Dockerfile or docker-compose.yml - Add support for new versions of docker-compose file (2.1+)
- Support multiple images in build!
- Largely rewritten, with tests! 🦇
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: test.sh
plugins:
- docker-compose#v1.1:
+ docker-compose#v1.2.0:
run: app
v1.1 (Pygmy 🐋)
What’s changed?
- Drops support for Buildkite Agent Beta 7 and below, and removes the
declare -x
which could cause all environment variable values to be output into build logs.
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: test.sh
plugins:
- docker-compose#v1.0:
+ docker-compose#v1.1:
run: app