docker_service build command respects the "pull: no" parameter

Fixes #30296.
This commit is contained in:
Andrew Lihonosov 2017-09-13 18:38:14 +00:00 committed by Chris Houseknecht
parent fb4d065654
commit 4c0889e8fc

View file

@ -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))