mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 21:03:00 +00:00
18 lines
525 B
Python
18 lines
525 B
Python
# local
|
|
from ..subcommand import ServiceCommand
|
|
|
|
|
|
class PullCommand(ServiceCommand):
|
|
"""kiwi pull"""
|
|
|
|
def __init__(self):
|
|
super().__init__(
|
|
'pull', num_projects='?', num_services='*',
|
|
action="Pulling images for",
|
|
description="Pull images for the whole instance, a project or service(s) inside a project"
|
|
)
|
|
|
|
def _run_services(self, runner, args, project, services):
|
|
project.compose_run(['pull', '--ignore-pull-failures', *services])
|
|
|
|
return True
|