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

32 lines
859 B
Python
Raw Normal View History

2020-08-17 12:12:33 +00:00
# system
import logging
# local
2020-08-18 11:50:21 +00:00
from ._subcommand import FlexCommand
2020-08-17 12:12:33 +00:00
from .utils.dockercommand import DockerCommand
2020-08-18 11:50:21 +00:00
class UpCommand(FlexCommand):
2020-08-17 12:12:33 +00:00
"""kiwi up"""
def __init__(self):
super().__init__(
2020-08-18 11:50:21 +00:00
'up', description="Bring up the whole instance, a project or service(s) inside a project"
2020-08-17 12:12:33 +00:00
)
def _run_project(self, runner, config, args, project_name):
logging.info(f"Bringing up project '{project_name}'")
2020-08-17 12:12:33 +00:00
2020-08-18 11:50:21 +00:00
DockerCommand('docker-compose').run(
config, args, ['up', '-d']
)
return True
2020-08-17 12:51:43 +00:00
def _run_services(self, runner, config, args, project_name, services):
logging.info(f"Bringing up services {services} in project '{project_name}'")
2020-08-17 13:00:05 +00:00
2020-08-18 11:50:21 +00:00
DockerCommand('docker-compose').run(
config, args, ['up', '-d', *services]
2020-08-18 11:50:21 +00:00
)
return True