Skip to content

Releases: buildkite-plugins/docker-buildkite-plugin

v1.2.0 (⚪️ Chalk It Up)

05 Jun 12:40
aa79534
Compare
Choose a tag to compare

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)

24 Jan 23:54
13d38b6
Compare
Choose a tag to compare

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)

24 Jan 02:59
@lox lox
7b28886
Compare
Choose a tag to compare

🚨 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 to docker 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)

28 May 12:17
26823d4
Compare
Choose a tag to compare

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)

28 May 12:13
22c90b6
Compare
Choose a tag to compare
Pre-release

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