@@ -117,7 +117,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
117
117
}
118
118
from , err = e .CreateScratchImage ()
119
119
if err != nil {
120
- return err
120
+ return fmt . Errorf ( "unable to create a scratch image for this build: %v" , err )
121
121
}
122
122
defer e .CleanupImage (from )
123
123
}
@@ -157,7 +157,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
157
157
}
158
158
v , err := e .Client .CreateVolume (docker.CreateVolumeOptions {Name : volumeName })
159
159
if err != nil {
160
- return err
160
+ return fmt . Errorf ( "unable to create volume to mount secrets: %v" , err )
161
161
}
162
162
defer e .cleanupVolume (volumeName )
163
163
sharedMount = v .Mountpoint
@@ -181,7 +181,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
181
181
}
182
182
container , err := e .Client .CreateContainer (opts )
183
183
if err != nil {
184
- return err
184
+ return fmt . Errorf ( "unable to create build container: %v" , err )
185
185
}
186
186
e .Container = container
187
187
@@ -200,7 +200,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
200
200
})
201
201
}
202
202
if err := e .Copy (copies ... ); err != nil {
203
- return err
203
+ return fmt . Errorf ( "unable to copy build context into container: %v" , err )
204
204
}
205
205
}
206
206
@@ -223,7 +223,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
223
223
}
224
224
225
225
if err := e .Client .StartContainer (e .Container .ID , & hostConfig ); err != nil {
226
- return err
226
+ return fmt . Errorf ( "unable to start build container: %v" , err )
227
227
}
228
228
// TODO: is this racy? may have to loop wait in the actual run step
229
229
}
@@ -245,7 +245,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
245
245
if mustStart {
246
246
glog .V (4 ).Infof ("Stopping container %s ..." , e .Container .ID )
247
247
if err := e .Client .StopContainer (e .Container .ID , 0 ); err != nil {
248
- return err
248
+ return fmt . Errorf ( "unable to stop build container: %v" , err )
249
249
}
250
250
}
251
251
@@ -272,7 +272,7 @@ func (e *ClientExecutor) Build(r io.Reader, args map[string]string) error {
272
272
Tag : tag ,
273
273
})
274
274
if err != nil {
275
- return err
275
+ return fmt . Errorf ( "unable to commit build container: %v" , err )
276
276
}
277
277
e .Image = image
278
278
glog .V (4 ).Infof ("Committed %s to %s" , e .Container .ID , e .Image .ID )
@@ -293,7 +293,7 @@ func (e *ClientExecutor) Cleanup() error {
293
293
Force : true ,
294
294
})
295
295
if _ , ok := err .(* docker.NoSuchContainer ); err != nil && ! ok {
296
- return err
296
+ return fmt . Errorf ( "unable to cleanup build container: %v" , err )
297
297
}
298
298
e .Container = nil
299
299
return nil
@@ -389,7 +389,7 @@ func (e *ClientExecutor) LoadImage(from string) (*docker.Image, error) {
389
389
for _ , config := range auth {
390
390
// TODO: handle IDs?
391
391
pullImageOptions := docker.PullImageOptions {
392
- Repository : from ,
392
+ Repository : repository ,
393
393
Tag : tag ,
394
394
OutputStream : imageprogress .NewPullWriter (outputProgress ),
395
395
RawJSONStream : true ,
@@ -406,7 +406,7 @@ func (e *ClientExecutor) LoadImage(from string) (*docker.Image, error) {
406
406
continue
407
407
}
408
408
if lastErr != nil {
409
- return nil , lastErr
409
+ return nil , fmt . Errorf ( "unable to pull image (from: %s, tag: %s): %v" , repository , tag , lastErr )
410
410
}
411
411
412
412
return e .Client .InspectImage (from )
0 commit comments