docker_service build command respects the "pull: no" parameter
Fixes #30296.
This commit is contained in:
parent
fb4d065654
commit
4c0889e8fc
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue