docker_service build command respects the "pull: no" parameter

Fixes #30296.
pull/31200/head
Andrew Lihonosov 7 years ago committed by Chris Houseknecht
parent fb4d065654
commit 4c0889e8fc

@ -894,7 +894,7 @@ class ContainerManager(DockerBaseClass):
# build the image
try:
new_image_id = service.build(pull=True, no_cache=self.nocache)
new_image_id = service.build(pull=self.pull, no_cache=self.nocache)
except Exception as exc:
self.client.fail("Error: build failed with %s" % str(exc))

Loading…
Cancel
Save