Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
hubboss / boss / app / commands / start.py
Size: Mime:
from . import base
from ... import commands


class Start(base.BaseCommand):
    help = 'Start container'
    arguments = (
        dict(
            dest='hosts',
            action='store',
            nargs='*',
            help='Hosts to connect to'
        ),
        dict(
            dest='container_ids',
            action='store',
            help="Container ID (or IDs) to start"
        ),
    )

    def run(self):
        return commands.start(app=self.app, **self.kwargs)