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 12:18:54 +00:00
|
|
|
'up', "Bringing up",
|
|
|
|
description="Bring up the whole instance, a project or service(s) inside a project"
|
2020-08-17 12:12:33 +00:00
|
|
|
)
|
|
|
|
|
2020-08-18 12:18:54 +00:00
|
|
|
def _run_project(self, runner, config, args):
|
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
|
|
|
|
2020-08-18 12:18:54 +00:00
|
|
|
def _run_services(self, runner, config, args, services):
|
2020-08-18 11:50:21 +00:00
|
|
|
DockerCommand('docker-compose').run(
|
2020-08-18 12:04:10 +00:00
|
|
|
config, args, ['up', '-d', *services]
|
2020-08-18 11:50:21 +00:00
|
|
|
)
|
|
|
|
return True
|