Merge pull request #2808 from aanand/connect-before-start

Connect container to networks before starting it
This commit is contained in:
Daniel Nephin 2016-02-03 23:49:56 -05:00
commit 80d02e84e2
1 changed files with 1 additions and 1 deletions

View File

@ -424,8 +424,8 @@ class Service(object):
return self.start_container(container)
def start_container(self, container):
container.start()
self.connect_container_to_networks(container)
container.start()
return container
def connect_container_to_networks(self, container):