1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 21:03:00 +00:00
kiwi-scp/src/kiwi/subcommands/push.py

21 lines
592 B
Python
Raw Normal View History

2020-08-18 13:12:08 +00:00
# local
from ._subcommand import ServiceCommand
2020-08-18 13:12:08 +00:00
from .utils.dockercommand import DockerCommand
class PushCommand(ServiceCommand):
2020-08-18 13:12:08 +00:00
"""kiwi push"""
def __init__(self):
super().__init__(
'push', num_projects='?', num_services='*',
action="Pushing images for",
2020-08-18 13:12:08 +00:00
description="Push images for the whole instance, a project or service(s) inside a project"
)
def _run_services(self, runner, args, project, services):
DockerCommand('docker-compose').run(project, [
'push', *services
])
2020-08-18 13:12:08 +00:00
return True