Flag to skip all pull errors when pulling images.
Signed-off-by: Vojta Orgon <villlem@gmail.com>
This commit is contained in:
parent
bbc8b74c17
commit
c9083e21c8
8 changed files with 31 additions and 5 deletions
|
|
@ -270,6 +270,7 @@ class TopLevelCommand(Command):
|
|||
Usage: pull [options] [SERVICE...]
|
||||
|
||||
Options:
|
||||
--ignore-pull-failures Pull what it can and ignores images with pull failures.
|
||||
--allow-insecure-ssl Deprecated - no effect.
|
||||
"""
|
||||
if options['--allow-insecure-ssl']:
|
||||
|
|
@ -277,6 +278,7 @@ class TopLevelCommand(Command):
|
|||
|
||||
project.pull(
|
||||
service_names=options['SERVICE'],
|
||||
ignore_pull_failures=options.get('--ignore-pull-failures')
|
||||
)
|
||||
|
||||
def rm(self, project, options):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue