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/cmd.py

41 lines
1.1 KiB
Python
Raw Normal View History

# system
import logging
2020-08-13 11:00:32 +00:00
# local
2020-08-19 15:21:38 +00:00
from ..subcommand import ProjectCommand
2020-08-13 11:00:32 +00:00
class CmdCommand(ProjectCommand):
2020-08-13 12:26:49 +00:00
"""kiwi cmd"""
2020-08-13 11:00:32 +00:00
def __init__(self):
super().__init__(
'cmd', num_projects=1,
action="Running docker-compose in",
2020-08-13 11:00:32 +00:00
description="Run raw docker-compose command in a project"
)
# command for docker-compose
2020-08-13 11:00:32 +00:00
self._sub_parser.add_argument(
'compose_cmd', metavar='cmd', type=str,
help="command for 'docker-compose'"
2020-08-13 11:00:32 +00:00
)
# arguments for docker-compose command
self._sub_parser.add_argument(
'compose_args', metavar='arg', nargs='*', type=str,
help="arguments for 'docker-compose' commands"
)
def _run_projects(self, runner, args, projects):
if args.unknowns:
args.compose_args = [*args.compose_args, *args.unknowns]
args.unknowns = []
logging.debug(f"Updated args: {args}")
2020-08-13 11:00:32 +00:00
2020-08-13 12:26:49 +00:00
# run with split compose_cmd argument
2020-08-19 15:09:43 +00:00
projects[0].compose_run([args.compose_cmd, *args.compose_args])
2020-08-17 13:00:05 +00:00
return True