From 6f05cdb642a8eab1e01c41183a6356ed02228a8e Mon Sep 17 00:00:00 2001 From: christian-bromann Date: Tue, 21 Apr 2020 16:16:02 +0200 Subject: [PATCH] pull from right address - fixes #2 --- cli/runner/local.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/runner/local.go b/cli/runner/local.go index 4d35c493c..b3db6123a 100644 --- a/cli/runner/local.go +++ b/cli/runner/local.go @@ -49,7 +49,7 @@ func (r *localRunner) Setup() error { } // always pull base image to ensure we run latest version - if err := r.docker.PullBaseImage(r.context, r.jobConfig.Image.Base); err != nil { + if err := r.docker.PullBaseImage(r.context, "docker.io/"+r.jobConfig.Image.Base); err != nil { return err }