浏览代码

ps and logs can filter by service too

Aanand Prasad 12 年之前
父节点
当前提交
94cae10417
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      plum/cli/main.py

+ 4 - 4
plum/cli/main.py

@@ -88,12 +88,12 @@ class TopLevelCommand(Command):
         """
         List services and containers.
 
-        Usage: ps [options]
+        Usage: ps [options] [SERVICE...]
 
         Options:
             -q    Only display IDs
         """
-        containers = self.project.containers(stopped=True) + self.project.containers(one_off=True)
+        containers = self.project.containers(service_names=options['SERVICE'], stopped=True) + self.project.containers(service_names=options['SERVICE'], one_off=True)
 
         if options['-q']:
             for container in containers:
@@ -210,9 +210,9 @@ class TopLevelCommand(Command):
         """
         View output from containers
 
-        Usage: logs
+        Usage: logs [SERVICE...]
         """
-        containers = self.project.containers(stopped=False)
+        containers = self.project.containers(service_names=options['SERVICE'], stopped=False)
         print "Attaching to", list_containers(containers)
         LogPrinter(containers, attach_params={'logs': True}).run()