Browse Source

Merge pull request #308 from orchardup/fix-fig-up-attach

Regardless of dependencies, `fig up` only attaches to what you specify
Ben Firshman 11 years ago
parent
commit
94d82d4acb
1 changed files with 3 additions and 1 deletions
  1. 3 1
      fig/cli/main.py

+ 3 - 1
fig/cli/main.py

@@ -322,12 +322,14 @@ class TopLevelCommand(Command):
         recreate = not options['--no-recreate']
         service_names = options['SERVICE']
 
-        to_attach = self.project.up(
+        self.project.up(
             service_names=service_names,
             start_links=start_links,
             recreate=recreate
         )
 
+        to_attach = [c for s in self.project.get_services(service_names) for c in s.containers()]
+
         if not detached:
             print("Attaching to", list_containers(to_attach))
             log_printer = LogPrinter(to_attach, attach_params={"logs": True})