kiwi-scp/src/kiwi/subcommands/build.py

20 lines
551 B
Python
Raw Normal View History

2020-08-18 12:37:07 +00:00
# local
from ._subcommand import FlexCommand
from .utils.dockercommand import DockerCommand
class BuildCommand(FlexCommand):
"""kiwi build"""
def __init__(self):
super().__init__(
2020-08-18 13:12:08 +00:00
'build', "Building images for",
2020-08-18 12:37:07 +00:00
description="Build images for the whole instance, a project or service(s) inside a project"
)
def _run_services(self, runner, config, args, services):
DockerCommand('docker-compose').run(
config, args, ['build', '--pull', *services]
)
return True