buildkite-plugins/docker-buildkite-plugin

BUILDKITE_PLUGIN_DOCKER_IMAGE: unbound variable

CHR15- opened this issue · 3 comments

Hi!

/var/lib/buildkite-agent/plugins/github-com-buildkite-plugins-docker-buildkite-plugin-v3-5-0/hooks/command: line 339: BUILDKITE_PLUGIN_DOCKER_IMAGE: unbound variable

This has started occurring on our agents and nothing has changed from our end! Any ideas what this could be?

This is now fixed 👍

zzak commented

I just ran into this exact same thing, but haven't figured out why yet. 🤔

zzak commented

Oh, I was just using the wrong name for "image":

index bf9ba61..21137c5 100755
--- a/pipeline-generate
+++ b/pipeline-generate
@@ -242,7 +242,7 @@ def generic_step(label, command, ruby: ONE_RUBY)
           "download" => [".buildkite/*", ".buildkite/**/*"],
         },
         DOCKER_PLUGIN => {
-          "image": image_name_for(ruby)
+          "image" => image_name_for(ruby)
         }