Releases: buildkite-plugins/docker-buildkite-plugin
Releases · buildkite-plugins/docker-buildkite-plugin
v1.2.1 (🍷 Shiraz)
What’s changed?
- Don't echo env variables (#43) @toolmantim
- Remove
set -x
from debug output (#44) @toolmantim
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: test.sh
plugins:
- docker#v1.2.0:
+ docker#v1.2.1:
image: someimage
workdir: /app
v1.2.0 (⚪️ Chalk It Up)
What’s changed?
- Add support for connecting the container to a docker network #14 (@roblugton)
- Support additional groups (
--group-add
) #20 (@haines) - Add docker runtime support #39 (@asford)
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: test.sh
plugins:
- docker#v1.1.1:
+ docker#v1.2.0:
image: someimage
workdir: /app
v1.1.1 (🐜 Tiny Ants)
What’s changed?
- Re-add
bash -c
support (#12)
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: test.sh
plugins:
- docker#v1.1.0:
+ docker#v1.1.1:
image: someimage
workdir: /app
v1.1.0 (🍇 Grape Soda)
🚨 This release contains a backwards compatibility bug, where bash -c
was removed from the command execution. This has been fixed in v1.1.1
What’s changed?
- Added
workdir
default (/workdir
) (thanks @mikeknox) - Added
user
config for passing--user
todocker run
(thanks @mikeknox) - Added
always-pull
config for always pulling from docker registry before running (thanks @maktouch) - Added
mounts
config for mounting volumes in (thanks @maktouch) - Added
environment
config for extra environment vars - Default to mounting in the buildkite-agent binary, opt-out with
mount-buildkite-agent
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: test.sh
plugins:
- docker#v1.0.0:
+ docker#v1.1.0:
image: someimage
workdir: /app
v1.0.0 (🕶 Bueller)
What’s changed?
- Added tests and finalised syntax
- First 1.0 release 🎉
Upgrading
To upgrade, update your pipeline.yml
files:
steps:
- command: test.sh
plugins:
- docker#v0.0.1:
+ docker#v1.0.0:
image: someimage
workdir: /app
v0.0.1 (🌅 Hello World)
What’s changed?
- Literally everything.
Upgrading
To upgrade, update your pipeline.yml
files:
+ steps:
+ - command: test.sh
+ plugins:
+ docker#v0.0.1:
+ image: someimage
+ workdir: /app